summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kmod-debian-aliases/default.nix
blob: 23d323f84b8f479b5c937cb8e90f2b5f2f31be88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, lib }:

stdenv.mkDerivation rec {
  name = "kmod-debian-aliases-${version}.conf";
  version = "22-1.1";

  src = fetchurl {
    url = "https://snapshot.debian.org/archive/debian/20160404T220610Z/pool/main/k/kmod/kmod_${version}.debian.tar.xz";
    sha256 = "0daap2n4bvjqcnksaayy6csmdb1px4r02w3xp36bcp6w3lbnqamh";
  };

  installPhase = ''
    patch -i patches/aliases_conf
    cp aliases.conf $out
  '';

  meta = with lib; {
    homepage = "https://packages.debian.org/source/sid/kmod";
    description = "Linux configuration file for modprobe";
    maintainers = with maintainers; [ mathnerd314 ];
    platforms = with platforms; linux;
    license = with licenses; [ gpl2Plus lgpl21Plus ];
  };
}