add modutils for kernel 2.4.25

svn path=/nixpkgs/branches/nixos-pkgs/; revision=1885
This commit is contained in:
Armijn Hemel 2004-12-16 16:34:03 +00:00
parent aa150ce949
commit bb632c07ef
2 changed files with 14 additions and 0 deletions

View 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];
}

View file

@ -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;
};