nixpkgs/pkgs/tools/misc/parted/default.nix
Ludovic Courtès 75937c640e GNU Parted: Don't depend on device-mapper on non-Linux platforms.
svn path=/nixpkgs/trunk/; revision=17216
2009-09-17 08:00:26 +00:00

49 lines
1.6 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 = [ libuuid gettext readline ] ++
stdenv.lib.optional stdenv.isLinux devicemapper;
# 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
];
};
}