Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
709 B
Nix
31 lines
709 B
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
lib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kmod-debian-aliases.conf";
|
|
version = "30+20230601-2";
|
|
|
|
src = fetchurl {
|
|
url = "https://snapshot.debian.org/archive/debian/20231117T085632Z/pool/main/k/kmod/kmod_${version}.debian.tar.xz";
|
|
hash = "sha256-xJMGKht8hu0aQjN9TER87Rv5EYkVMeDfX/jJ8+UjAqM=";
|
|
};
|
|
|
|
installPhase = ''
|
|
cp extra/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
|
|
];
|
|
};
|
|
}
|