parted needs ncurses and readline...and still not there yet...

svn path=/nixpkgs/trunk/; revision=3488
This commit is contained in:
Armijn Hemel 2005-07-31 20:53:53 +00:00
parent e60679df47
commit f660a6d892
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ rec {
};
parted = (import ../tools/misc/parted) {
inherit fetchurl stdenv e2fsprogs;
inherit fetchurl stdenv e2fsprogs ncurses readline;
};

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, e2fsprogs}:
{stdenv, fetchurl, e2fsprogs, ncurses, readline}:
stdenv.mkDerivation {
name = "parted-1.6.23";
@ -6,5 +6,5 @@ stdenv.mkDerivation {
url = ftp://ftp.nluug.nl/pub/gnu/parted/parted-1.6.23.tar.gz;
md5 = "7e46a32def60ea355c193d9225691742";
};
buildInputs = [e2fsprogs];
buildInputs = [e2fsprogs ncurses readline];
}