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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
686 B
Nix
Raw Normal View History

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";
version = "30+20230601-2";
2015-09-06 01:11:03 +02:00
src = fetchurl {
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 = ''
cp extra/aliases.conf $out
2015-09-06 01:11:03 +02:00
'';
2020-06-30 21:11:42 +02:00
meta = with lib; {
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
};
}