add a bunch of tools

svn path=/nixpkgs/trunk/; revision=6279
This commit is contained in:
Armijn Hemel 2006-08-27 19:59:45 +00:00
parent ac298dd698
commit 1026cf8396

View file

@ -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;
};