add GNU parted

svn path=/nixpkgs/trunk/; revision=3485
This commit is contained in:
Armijn Hemel 2005-07-31 20:11:56 +00:00
parent 26b5326da4
commit 2aeb12f0b4

View file

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