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;
};
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) {
inherit fetchurl stdenv gettext;
};