svn path=/nixpkgs/branches/stdenv-updates/; revision=15271

This commit is contained in:
Eelco Dolstra 2009-04-23 12:34:56 +00:00
parent 49f47f92e3
commit a61894ea81

View file

@ -2,20 +2,23 @@
stdenv.mkDerivation {
name = "parted-1.8.8";
src = fetchurl {
url = mirror://gnu/parted/parted-1.8.8.tar.bz2;
sha256 = "1sn5qcdi4pvxnxz8ryh5p52qmqd72qbk0d0a65pksxf7khd83kfz";
};
buildInputs = [e2fsprogs readline];
preConfigure=''
export CFLAGS=-fgnu89-inline
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -fgnu89-inline"
'';
configureFlags = "--without-readline";
meta = {
description = "industrial-strength package for creating, destroying, resizing, checking and copying partitions";
description = "Tool to create, destroy, resize, check and copy partitions";
homepage = http://www.gnu.org/software/parted/;
license = "GPLv3";
};