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