nixpkgs/pkgs/os-specific/linux/kmod-debian-aliases/default.nix

25 lines
720 B
Nix
Raw Normal View History

2015-09-05 23:11:03 +00:00
{ stdenv, fetchurl, lib }:
2016-06-12 18:15:42 +00:00
stdenv.mkDerivation rec {
2015-09-05 23:11:03 +00:00
name = "kmod-debian-aliases-${version}.conf";
2016-06-12 18:15:42 +00:00
version = "22-1.1";
2015-09-05 23:11:03 +00:00
src = fetchurl {
url = "https://snapshot.debian.org/archive/debian/20160404T220610Z/pool/main/k/kmod/kmod_${version}.debian.tar.xz";
2016-06-12 18:15:42 +00:00
sha256 = "0daap2n4bvjqcnksaayy6csmdb1px4r02w3xp36bcp6w3lbnqamh";
2015-09-05 23:11:03 +00:00
};
installPhase = ''
patch -i patches/aliases_conf
cp aliases.conf $out
'';
2020-06-30 19:11:42 +00:00
meta = with lib; {
homepage = "https://packages.debian.org/source/sid/kmod";
2015-09-05 23:11:03 +00:00
description = "Linux configuration file for modprobe";
2020-06-30 19:11:42 +00:00
maintainers = with maintainers; [ mathnerd314 ];
platforms = with platforms; linux;
license = with licenses; [ gpl2Plus lgpl21Plus ];
2015-09-05 23:11:03 +00:00
};
}