mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
add modutils for kernel 2.4.25
svn path=/nixpkgs/branches/nixos-pkgs/; revision=1885
This commit is contained in:
parent
aa150ce949
commit
bb632c07ef
2 changed files with 14 additions and 0 deletions
10
pkgs/os-specific/linux/modutils/default.nix
Normal file
10
pkgs/os-specific/linux/modutils/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl, bison, flex}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "modutils-2.4.25";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nl.kernel.org/pub/linux/utils/kernel/modutils/v2.4/modutils-2.4.25.tar.bz2;
|
||||
md5 = "2c0cca3ef6330a187c6ef4fe41ecaa4d";
|
||||
};
|
||||
buildInputs = [bison flex];
|
||||
}
|
|
@ -731,6 +731,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
modutils = (import ../os-specific/linux/modutils) {
|
||||
inherit fetchurl stdenv bison flex;
|
||||
};
|
||||
|
||||
shadowutils = (import ../os-specific/linux/shadow) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue