add MAKEDEV and a wrapper

svn path=/nixpkgs/trunk/; revision=6059
This commit is contained in:
Armijn Hemel 2006-08-06 20:40:41 +00:00
parent 7bd7fef590
commit c064d7d10f

View File

@ -1842,6 +1842,14 @@ rec {
gcc = stdenv.gcc; gcc = stdenv.gcc;
}; };
MAKEDEV = (import ../os-specific/linux/MAKEDEV) {
inherit fetchurl stdenv;
};
MAKEDEVwrapper = (import ../os-specific/linux/MAKEDEV-wrapper) {
inherit stdenv MAKEDEV;
};
eject = (import ../os-specific/linux/eject) { eject = (import ../os-specific/linux/eject) {
inherit fetchurl stdenv gettext; inherit fetchurl stdenv gettext;
}; };