2021-03-26 10:29:04 +00:00
|
|
|
{ fetchurl, lib, stdenv, libuuid, popt, icu, ncurses, nixosTests }:
|
2011-03-14 21:13:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gptfdisk";
|
2021-06-16 03:18:06 +00:00
|
|
|
version = "1.0.8";
|
2011-03-14 21:13:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-07-22 07:33:05 +00:00
|
|
|
# https://www.rodsbooks.com/gdisk/${name}.tar.gz also works, but the home
|
2015-10-20 23:43:30 +00:00
|
|
|
# page clearly implies a preference for using SourceForge's bandwidth:
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/gptfdisk/${pname}-${version}.tar.gz";
|
2021-06-16 03:18:06 +00:00
|
|
|
sha256 = "sha256-ldGYVvAE2rxLjDQrJhLo0KnuvdUgBClxiDafFS6dxt8=";
|
2011-03-14 21:13:35 +00:00
|
|
|
};
|
|
|
|
|
2018-08-08 21:43:32 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs gdisk_test.sh
|
2021-01-15 09:19:50 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2015-10-31 20:26:10 +00:00
|
|
|
substituteInPlace Makefile.mac --replace \
|
|
|
|
"-mmacosx-version-min=10.4" "-mmacosx-version-min=10.6"
|
|
|
|
substituteInPlace Makefile.mac --replace \
|
|
|
|
" -arch i386" ""
|
|
|
|
substituteInPlace Makefile.mac --replace \
|
|
|
|
" -I/opt/local/include -I /usr/local/include -I/opt/local/include" ""
|
|
|
|
substituteInPlace Makefile.mac --replace \
|
2016-02-01 17:16:50 +00:00
|
|
|
"/opt/local/lib/libncurses.a" "${ncurses.out}/lib/libncurses.dylib"
|
2015-10-31 20:26:10 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildPhase = lib.optionalString stdenv.isDarwin "make -f Makefile.mac";
|
2011-09-17 12:54:46 +00:00
|
|
|
buildInputs = [ libuuid popt icu ncurses ];
|
2011-03-14 21:13:35 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/sbin
|
|
|
|
mkdir -p $out/share/man/man8
|
2013-10-09 14:42:05 +00:00
|
|
|
for prog in gdisk sgdisk fixparts cgdisk
|
|
|
|
do
|
|
|
|
install -v -m755 $prog $out/sbin
|
|
|
|
install -v -m644 $prog.8 $out/share/man/man8
|
|
|
|
done
|
2011-03-14 21:13:35 +00:00
|
|
|
'';
|
|
|
|
|
2021-03-26 10:29:04 +00:00
|
|
|
passthru.tests = lib.optionalAttrs stdenv.hostPlatform.isx86 {
|
|
|
|
installer-simpleLabels = nixosTests.installer.simpleLabels;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-10-20 23:43:30 +00:00
|
|
|
description = "Set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks";
|
|
|
|
license = licenses.gpl2;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.rodsbooks.com/gdisk/";
|
2015-10-31 20:26:10 +00:00
|
|
|
platforms = platforms.all;
|
2021-03-26 10:29:04 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2011-03-14 21:13:35 +00:00
|
|
|
};
|
|
|
|
}
|