2021-05-12 18:59:06 +01:00
|
|
|
{ lib, stdenv, fetchurl, intltool, gettext, coreutils, gnused, gnome
|
2021-01-17 03:51:22 +00:00
|
|
|
, gnugrep, parted, glib, libuuid, pkg-config, gtkmm3, libxml2
|
2020-11-24 15:29:28 +00:00
|
|
|
, gpart, hdparm, procps, util-linux, polkit, wrapGAppsHook, substituteAll
|
2021-11-16 17:28:55 +00:00
|
|
|
, mtools, dosfstools
|
2015-06-12 10:53:33 +01:00
|
|
|
}:
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2013-02-14 12:13:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-05-12 18:59:06 +01:00
|
|
|
pname = "gparted";
|
2022-04-04 16:35:36 +01:00
|
|
|
version = "1.4.0";
|
2009-09-10 17:57:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-12 18:59:06 +01:00
|
|
|
url = "mirror://sourceforge/gparted/${pname}-${version}.tar.gz";
|
2022-04-04 16:35:36 +01:00
|
|
|
sha256 = "sha256-5Sk6eS5T/b66KcSoNBE82WA9DWOTMNqTGkaL82h4h74=";
|
2009-09-10 17:57:21 +01:00
|
|
|
};
|
|
|
|
|
2019-08-08 23:39:25 +01:00
|
|
|
# Tries to run `pkexec --version` to get version.
|
|
|
|
# however the binary won't be suid so it returns
|
|
|
|
# an error preventing the program from detection
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./polkit.patch;
|
|
|
|
polkit_version = polkit.version;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-05-30 10:31:34 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
configureFlags = [ "--disable-doc" ];
|
2009-09-10 17:57:21 +01:00
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
buildInputs = [ parted glib libuuid gtkmm3 libxml2 polkit.bin gnome.adwaita-icon-theme ];
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ intltool gettext pkg-config wrapGAppsHook ];
|
2019-08-08 23:39:25 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
2021-11-16 17:28:55 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ gpart hdparm util-linux procps coreutils gnused gnugrep mtools dosfstools ]}"
|
2019-08-08 23:39:25 +01:00
|
|
|
)
|
|
|
|
'';
|
2015-10-29 13:38:09 +00:00
|
|
|
|
2019-08-08 23:39:25 +01:00
|
|
|
# Doesn't get installed automaticallly if PREFIX != /usr
|
2015-10-29 13:38:09 +00:00
|
|
|
postInstall = ''
|
2019-08-08 23:39:25 +01:00
|
|
|
install -D -m0644 org.gnome.gparted.policy \
|
|
|
|
$out/share/polkit-1/actions/org.gnome.gparted.policy
|
2015-10-29 13:38:09 +00:00
|
|
|
'';
|
2009-09-10 17:57:21 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-07-28 16:35:01 +01:00
|
|
|
description = "Graphical disk partitioning tool";
|
2015-01-26 18:50:52 +00:00
|
|
|
longDescription = ''
|
|
|
|
GNOME Partition Editor for creating, reorganizing, and deleting disk
|
|
|
|
partitions. GParted enables you to change the partition organization
|
|
|
|
while preserving the partition contents.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gparted.org";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-08-04 23:08:51 +01:00
|
|
|
platforms = platforms.linux;
|
2009-09-10 17:57:21 +01:00
|
|
|
};
|
|
|
|
}
|