2010-03-01 14:12:48 +01:00
|
|
|
{ stdenv, fetchurl, devicemapper, libuuid, gettext, readline
|
2012-01-18 21:53:01 +01:00
|
|
|
, utillinux, check, enableStatic ? false, hurd ? null }:
|
2009-07-26 23:03:52 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-04-09 22:51:27 +02:00
|
|
|
name = "parted-3.1";
|
2005-07-31 22:11:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-03-01 14:12:48 +01:00
|
|
|
url = "mirror://gnu/parted/${name}.tar.xz";
|
2012-04-09 22:51:27 +02:00
|
|
|
sha256 = "05fa4m1bky9d13hqv91jlnngzlyn7y4rnnyq6d86w0dg3vww372y";
|
2005-07-31 22:11:56 +02:00
|
|
|
};
|
2007-05-14 00:43:15 +02:00
|
|
|
|
2010-12-13 00:21:35 +01:00
|
|
|
buildInputs = [ libuuid ]
|
|
|
|
++ stdenv.lib.optional (readline != null) readline
|
|
|
|
++ stdenv.lib.optional (gettext != null) gettext
|
|
|
|
++ stdenv.lib.optional (devicemapper != null) devicemapper
|
2011-06-04 23:46:16 +02:00
|
|
|
++ stdenv.lib.optional (hurd != null) hurd
|
|
|
|
++ stdenv.lib.optional doCheck check;
|
2009-07-26 23:03:52 +02:00
|
|
|
|
2010-12-13 00:21:35 +01:00
|
|
|
configureFlags =
|
|
|
|
(if (readline != null)
|
|
|
|
then [ "--with-readline" ]
|
|
|
|
else [ "--without-readline" ])
|
|
|
|
++ stdenv.lib.optional (devicemapper == null) "--disable-device-mapper"
|
|
|
|
++ stdenv.lib.optional enableStatic "--enable-static";
|
2009-07-26 23:03:52 +02:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2010-12-13 00:21:35 +01:00
|
|
|
preCheck =
|
|
|
|
stdenv.lib.optionalString doCheck
|
|
|
|
# The `t0400-loop-clobber-infloop.sh' test wants `mkswap'.
|
2011-12-13 13:57:32 +01:00
|
|
|
"export PATH=\"${utillinux}/sbin:$PATH\"";
|
2009-02-15 00:44:08 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-07-26 23:03:52 +02:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2009-02-15 00:44:08 +01:00
|
|
|
homepage = http://www.gnu.org/software/parted/;
|
2009-07-26 23:03:52 +02:00
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [
|
|
|
|
# Add your name here!
|
|
|
|
stdenv.lib.maintainers.ludo
|
|
|
|
];
|
2009-09-17 12:42:27 +02:00
|
|
|
|
2010-03-01 14:12:48 +01:00
|
|
|
# GNU Parted requires libuuid, which is part of util-linux-ng.
|
2009-09-17 12:42:27 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-02-15 00:44:08 +01:00
|
|
|
};
|
2005-07-31 22:11:56 +02:00
|
|
|
}
|