nixpkgs/pkgs/tools/misc/parted/default.nix
Eelco Dolstra 130b060d90 * GNU parted: e2fsprogs -> libuuid.
svn path=/nixpkgs/trunk/; revision=16694
2009-08-11 22:23:30 +00:00

48 lines
1.5 KiB
Nix

{ stdenv, fetchurl, devicemapper, libuuid, gettext, readline }:
stdenv.mkDerivation rec {
name = "parted-1.9.0";
src = fetchurl {
url = "mirror://gnu/parted/${name}.tar.gz";
sha256 = "02amqpzl8lgk247cjsbaz1nsiz9i1pbj0adx0z109h94p90i48sk";
};
buildInputs = [ devicemapper libuuid gettext readline ];
# XXX: For some reason our libreadline.so doesn't have libncurses as
# NEEDED and `configure' links with `-Wl,--as-needed' so when
# `AC_CHECK_LIB' tries to link with `-lreadline -lncurses' the latter is
# removed, leaving `libreadline' with unresolved references.
#
# Remove the `preConfigure' hack below when Readline is fixed.
preConfigure = ''export gl_cv_ignore_unused_libraries=""'';
configureFlags = "--with-readline";
doCheck = true;
patches = [ ./t7000-scripting.patch ];
meta = {
description = "GNU Parted, a tool to create, destroy, resize, check, and copy partitions";
longDescription = ''
GNU Parted is an industrial-strength package for creating, destroying,
resizing, checking and copying partitions, and the file systems on
them. This is useful for creating space for new operating systems,
reorganising disk usage, copying data on hard disks and disk imaging.
It contains a library, libparted, and a command-line frontend, parted,
which also serves as a sample implementation and script backend.
'';
homepage = http://www.gnu.org/software/parted/;
license = "GPLv3+";
maintainers = [
# Add your name here!
stdenv.lib.maintainers.ludo
];
};
}