forked from mirrors/nixpkgs
add module-init-tools
svn path=/nixpkgs/trunk/; revision=3649
This commit is contained in:
parent
28fb3fd105
commit
d6b17b5edc
9
pkgs/os-specific/linux/module-init-tools/default.nix
Normal file
9
pkgs/os-specific/linux/module-init-tools/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "module-init-tools-3.2-pre9";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-3.2-pre9.tar.bz2;
|
||||
md5 = "f0ede5936c52e3d59411bd9594ad364f";
|
||||
};
|
||||
}
|
|
@ -1088,6 +1088,10 @@ rec {
|
|||
inherit fetchurl stdenv bison flex;
|
||||
};
|
||||
|
||||
module_init_tools = (import ../os-specific/linux/module-init-tools) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
shadowutils = (import ../os-specific/linux/shadow) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue