2010-03-01 13:12:48 +00:00
|
|
|
{ stdenv, fetchurl, devicemapper, libuuid, gettext, readline
|
|
|
|
, utillinuxng, xz }:
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-07-04 21:10:58 +00:00
|
|
|
name = "parted-2.3";
|
2005-07-31 20:11:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-03-01 13:12:48 +00:00
|
|
|
url = "mirror://gnu/parted/${name}.tar.xz";
|
2010-07-04 21:10:58 +00:00
|
|
|
sha256 = "0sabj81nawcjm8ww34lxg65ka8crv3w2ab4crh8ypw5agg681836";
|
2005-07-31 20:11:56 +00:00
|
|
|
};
|
2007-05-13 22:43:15 +00:00
|
|
|
|
2010-03-01 13:12:48 +00:00
|
|
|
buildInputs = [ xz libuuid gettext readline libuuid devicemapper ];
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
configureFlags = "--with-readline";
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2010-01-08 14:33:14 +00:00
|
|
|
# The `t0400-loop-clobber-infloop.sh' test wants `mkswap'.
|
|
|
|
preCheck = "export PATH=\"${utillinuxng}/sbin:$PATH\"";
|
2009-02-14 23:44:08 +00:00
|
|
|
|
|
|
|
meta = {
|
2009-07-26 21:03:52 +00: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-14 23:44:08 +00:00
|
|
|
homepage = http://www.gnu.org/software/parted/;
|
2009-07-26 21:03:52 +00:00
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [
|
|
|
|
# Add your name here!
|
|
|
|
stdenv.lib.maintainers.ludo
|
|
|
|
];
|
2009-09-17 10:42:27 +00:00
|
|
|
|
2010-03-01 13:12:48 +00:00
|
|
|
# GNU Parted requires libuuid, which is part of util-linux-ng.
|
2009-09-17 10:42:27 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-02-14 23:44:08 +00:00
|
|
|
};
|
2005-07-31 20:11:56 +00:00
|
|
|
}
|