add a bunch of tools
svn path=/nixpkgs/trunk/; revision=6279
This commit is contained in:
parent
ac298dd698
commit
1026cf8396
|
@ -1252,6 +1252,10 @@ rec {
|
|||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
|
||||
popt110 = (import ../development/libraries/popt/popt-1.10.6.nix) {
|
||||
inherit fetchurl stdenv gettext libtool autoconf automake;
|
||||
};
|
||||
|
||||
slang = (import ../development/libraries/slang) {
|
||||
inherit fetchurl stdenv pcre libpng;
|
||||
};
|
||||
|
@ -1926,6 +1930,14 @@ rec {
|
|||
gcc = stdenv.gcc;
|
||||
};
|
||||
|
||||
libselinux = (import ../os-specific/linux/libselinux) {
|
||||
inherit fetchurl stdenv libsepol;
|
||||
};
|
||||
|
||||
libsepol = (import ../os-specific/linux/libsepol) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
MAKEDEV = (import ../os-specific/linux/MAKEDEV) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
@ -1934,6 +1946,11 @@ rec {
|
|||
inherit stdenv MAKEDEV;
|
||||
};
|
||||
|
||||
mkinitrd = (import ../os-specific/linux/mkinitrd) {
|
||||
inherit fetchurl stdenv;
|
||||
popt = popt110;
|
||||
};
|
||||
|
||||
eject = (import ../os-specific/linux/eject) {
|
||||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue