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

53 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, gettext, makeWrapper, coreutils, gnused, gnome3
, gnugrep, parted, glib, libuuid, pkgconfig, gtkmm3, libxml2, hicolor-icon-theme
, gpart, hdparm, procps, utillinux, polkit, wrapGAppsHook, substituteAll
}:
stdenv.mkDerivation rec {
2019-05-31 08:52:17 +00:00
name = "gparted-1.0.0";
src = fetchurl {
url = "mirror://sourceforge/gparted/${name}.tar.gz";
2019-05-31 08:52:17 +00:00
sha256 = "0mdvn85jvy72ff7nds3dakx9kzknh8gx1z8i0w2sf970q03qp2z4";
};
# 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 hicolor-icon-theme polkit.bin gnome3.adwaita-icon-theme ];
nativeBuildInputs = [ intltool gettext pkgconfig wrapGAppsHook ];
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : "${stdenv.lib.makeBinPath [ gpart hdparm utillinux procps coreutils gnused gnugrep ]}"
)
'';
# 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
'';
2015-01-26 18:50:52 +00:00
meta = with stdenv.lib; {
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.
'';
2018-05-01 03:03:23 +00:00
homepage = https://gparted.org;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}