2015-09-06 01:11:03 +02:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2016-06-12 20:15:42 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-01-10 23:30:11 +01:00
|
|
|
pname = "kmod-debian-aliases.conf";
|
2023-11-18 00:47:00 +01:00
|
|
|
version = "30+20230601-2";
|
2015-09-06 01:11:03 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-18 00:47:00 +01:00
|
|
|
url = "https://snapshot.debian.org/archive/debian/20231117T085632Z/pool/main/k/kmod/kmod_${version}.debian.tar.xz";
|
|
|
|
hash = "sha256-xJMGKht8hu0aQjN9TER87Rv5EYkVMeDfX/jJ8+UjAqM=";
|
2015-09-06 01:11:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2023-11-18 00:47:00 +01:00
|
|
|
cp extra/aliases.conf $out
|
2015-09-06 01:11:03 +02:00
|
|
|
'';
|
|
|
|
|
2020-06-30 21:11:42 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://packages.debian.org/source/sid/kmod";
|
2015-09-06 01:11:03 +02:00
|
|
|
description = "Linux configuration file for modprobe";
|
2020-06-30 21:11:42 +02:00
|
|
|
maintainers = with maintainers; [ mathnerd314 ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
2015-09-06 01:11:03 +02:00
|
|
|
};
|
|
|
|
}
|