2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv
|
2019-11-27 22:06:22 +00:00
|
|
|
, fetchurl
|
|
|
|
, lvm2
|
|
|
|
, libuuid
|
|
|
|
, gettext
|
|
|
|
, readline
|
|
|
|
, dosfstools
|
|
|
|
, e2fsprogs
|
|
|
|
, perl
|
2020-11-23 19:59:11 +00:00
|
|
|
, python3
|
2020-11-24 15:29:28 +00:00
|
|
|
, util-linux
|
2019-11-27 22:06:22 +00:00
|
|
|
, check
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2019-11-27 22:06:22 +00:00
|
|
|
}:
|
2009-07-26 21:03:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 09:41:34 +00:00
|
|
|
pname = "parted";
|
2023-04-28 01:49:33 +00:00
|
|
|
version = "3.6";
|
2005-07-31 20:11:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-02 09:41:34 +00:00
|
|
|
url = "mirror://gnu/parted/parted-${version}.tar.xz";
|
2023-04-28 01:49:33 +00:00
|
|
|
sha256 = "sha256-O0Pb4zzKD5oYYB66tWt4UrEo7Bo986mzDM3l5zNZ5hI=";
|
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 ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional (readline != null) readline
|
|
|
|
++ lib.optional (gettext != null) gettext
|
|
|
|
++ 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" ])
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional (lvm2 == null) "--disable-device-mapper"
|
|
|
|
++ 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 */
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ check dosfstools e2fsprogs perl python3 util-linux ];
|
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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/parted/";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = 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.
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2009-02-14 23:44:08 +00:00
|
|
|
};
|
2005-07-31 20:11:56 +00:00
|
|
|
}
|