2019-11-27 22:06:22 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, lvm2
|
|
|
|
, libuuid
|
|
|
|
, gettext
|
|
|
|
, readline
|
|
|
|
, dosfstools
|
|
|
|
, e2fsprogs
|
|
|
|
, perl
|
|
|
|
, python2
|
|
|
|
, utillinux
|
|
|
|
, check
|
|
|
|
, enableStatic ? false
|
|
|
|
}:
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-27 22:06:22 +00:00
|
|
|
name = "parted-3.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";
|
2019-11-27 22:06:22 +00:00
|
|
|
sha256 = "0i1xp367wpqw75b20c3jnism3dg3yqj4a7a22p2jb1h1hyyv9qjp";
|
2005-07-31 20:11:56 +00:00
|
|
|
};
|
2007-05-13 22:43:15 +00:00
|
|
|
|
2018-05-23 18:05:42 +00:00
|
|
|
outputs = [ "out" "dev" "man" "info" ];
|
|
|
|
|
2018-08-08 21:35:34 +00:00
|
|
|
postPatch = ''
|
2014-10-21 23:17:26 +00:00
|
|
|
patchShebangs tests
|
|
|
|
'';
|
|
|
|
|
2010-12-12 23:21:35 +00:00
|
|
|
buildInputs = [ libuuid ]
|
|
|
|
++ stdenv.lib.optional (readline != null) readline
|
|
|
|
++ stdenv.lib.optional (gettext != null) gettext
|
2018-08-28 21:17:54 +00:00
|
|
|
++ stdenv.lib.optional (lvm2 != null) lvm2;
|
2009-07-26 21:03:52 +00:00
|
|
|
|
2010-12-12 23:21:35 +00:00
|
|
|
configureFlags =
|
|
|
|
(if (readline != null)
|
|
|
|
then [ "--with-readline" ]
|
|
|
|
else [ "--without-readline" ])
|
2018-07-17 20:11:16 +00:00
|
|
|
++ stdenv.lib.optional (lvm2 == null) "--disable-device-mapper"
|
2010-12-12 23:21:35 +00:00
|
|
|
++ stdenv.lib.optional enableStatic "--enable-static";
|
2009-07-26 21:03:52 +00:00
|
|
|
|
2016-12-20 20:57:28 +00:00
|
|
|
# Tests were previously failing due to Hydra running builds as uid 0.
|
|
|
|
# That should hopefully be fixed now.
|
2018-03-26 22:31:32 +00:00
|
|
|
doCheck = !stdenv.hostPlatform.isMusl; /* translation test */
|
2019-11-27 22:06:22 +00:00
|
|
|
checkInputs = [ check dosfstools e2fsprogs perl python2 utillinux ];
|
2009-02-14 23:44:08 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Create, destroy, resize, check, and copy partitions";
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/parted/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
maintainers = [
|
|
|
|
# Add your name here!
|
|
|
|
];
|
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
|
|
|
}
|