add modutils for kernel 2.4.25
svn path=/nixpkgs/branches/nixos-pkgs/; revision=1885
This commit is contained in:
parent
aa150ce949
commit
bb632c07ef
|
@ -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;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
modutils = (import ../os-specific/linux/modutils) {
|
||||||
|
inherit fetchurl stdenv bison flex;
|
||||||
|
};
|
||||||
|
|
||||||
shadowutils = (import ../os-specific/linux/shadow) {
|
shadowutils = (import ../os-specific/linux/shadow) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue