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

55 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, intltool, gettext, coreutils, gnused, gnome
2021-01-17 06:51:22 +03:00
, gnugrep, parted, glib, libuuid, pkg-config, gtkmm3, libxml2
2020-11-24 18:29:28 +03:00
, gpart, hdparm, procps, util-linux, polkit, wrapGAppsHook, substituteAll
, mtools, dosfstools
}:
stdenv.mkDerivation rec {
pname = "gparted";
2021-07-20 22:43:06 +03:00
version = "1.3.1";
src = fetchurl {
url = "mirror://sourceforge/gparted/${pname}-${version}.tar.gz";
2021-07-20 22:43:06 +03:00
sha256 = "sha256-Xu4ubXSxXvlrE7OiMQyGjtIpjgM0ECHn0SpamKHR4Qk=";
};
# 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;
})
];
configureFlags = [ "--disable-doc" ];
buildInputs = [ parted glib libuuid gtkmm3 libxml2 polkit.bin gnome.adwaita-icon-theme ];
2021-01-17 06:51:22 +03:00
nativeBuildInputs = [ intltool gettext pkg-config wrapGAppsHook ];
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : "${lib.makeBinPath [ gpart hdparm util-linux procps coreutils gnused gnugrep mtools dosfstools ]}"
)
'';
# Doesn't get installed automaticallly if PREFIX != /usr
postInstall = ''
install -D -m0644 org.gnome.gparted.policy \
$out/share/polkit-1/actions/org.gnome.gparted.policy
'';
meta = with lib; {
description = "Graphical disk partitioning tool";
2015-01-26 21:50:52 +03: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.
'';
homepage = "https://gparted.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}