nixpkgs/pkgs/tools/misc/parted/default.nix

72 lines
1.9 KiB
Nix
Raw Normal View History

2019-11-27 22:06:22 +00:00
{ stdenv
, fetchurl
, fetchpatch
, 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
, enableStatic ? stdenv.hostPlatform.isStatic
2019-11-27 22:06:22 +00:00
}:
stdenv.mkDerivation rec {
2019-11-27 22:06:22 +00:00
name = "parted-3.3";
src = fetchurl {
url = "mirror://gnu/parted/${name}.tar.xz";
2019-11-27 22:06:22 +00:00
sha256 = "0i1xp367wpqw75b20c3jnism3dg3yqj4a7a22p2jb1h1hyyv9qjp";
};
2018-05-23 18:05:42 +00:00
outputs = [ "out" "dev" "man" "info" ];
2018-08-08 21:35:34 +00:00
postPatch = ''
patchShebangs tests
'';
buildInputs = [ libuuid ]
++ stdenv.lib.optional (readline != null) readline
++ stdenv.lib.optional (gettext != null) gettext
++ stdenv.lib.optional (lvm2 != null) lvm2;
configureFlags =
(if (readline != null)
then [ "--with-readline" ]
else [ "--without-readline" ])
++ stdenv.lib.optional (lvm2 == null) "--disable-device-mapper"
++ stdenv.lib.optional enableStatic "--enable-static";
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.
doCheck = !stdenv.hostPlatform.isMusl; /* translation test */
2020-11-23 19:59:11 +00:00
checkInputs = [ check dosfstools e2fsprogs perl python3 util-linux ];
meta = {
description = "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.
'';
homepage = "https://www.gnu.org/software/parted/";
license = stdenv.lib.licenses.gpl3Plus;
maintainers = [
# Add your name here!
];
# GNU Parted requires libuuid, which is part of util-linux-ng.
platforms = stdenv.lib.platforms.linux;
};
}