biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / gparted / default.nix
blobc91ed7a5a3066637ab3127d5cc39347c49c6138d
1 { lib, stdenv, fetchurl, gettext, coreutils, gnused, gnome
2 , adwaita-icon-theme
3 , gnugrep, parted, glib, libuuid, pkg-config, gtkmm3, libxml2
4 , gpart, hdparm, procps, util-linux, polkit, wrapGAppsHook3, substituteAll
5 , mtools, dosfstools, xhost
6 }:
8 stdenv.mkDerivation rec {
9   pname = "gparted";
10   version = "1.6.0";
12   src = fetchurl {
13     url = "mirror://sourceforge/gparted/gparted-${version}.tar.gz";
14     sha256 = "sha256-m59Rs85JTdy1mlXhrmZ5wJQ2YE4zHb9aU21g3tbG6ls=";
15   };
17   # Tries to run `pkexec --version` to get version.
18   # however the binary won't be suid so it returns
19   # an error preventing the program from detection
20   patches = [
21     (substituteAll {
22       src = ./polkit.patch;
23       polkit_version = polkit.version;
24     })
25   ];
27   enableParallelBuilding = true;
29   configureFlags = [ "--disable-doc" "--enable-xhost-root" ];
31   buildInputs = [ parted glib libuuid gtkmm3 libxml2 polkit.bin adwaita-icon-theme  ];
32   nativeBuildInputs = [ gettext pkg-config wrapGAppsHook3 ];
34   preConfigure = ''
35     # For ITS rules
36     addToSearchPath "XDG_DATA_DIRS" "${polkit.out}/share"
37   '';
39   preFixup = ''
40     gappsWrapperArgs+=(
41        --prefix PATH : "${lib.makeBinPath [ gpart hdparm util-linux procps coreutils gnused gnugrep mtools dosfstools xhost ]}"
42     )
43   '';
45   # Doesn't get installed automaticallly if PREFIX != /usr
46   postInstall = ''
47     install -D -m0644 org.gnome.gparted.policy \
48       $out/share/polkit-1/actions/org.gnome.gparted.policy
49   '';
51   meta = with lib; {
52     description = "Graphical disk partitioning tool";
53     longDescription = ''
54       GNOME Partition Editor for creating, reorganizing, and deleting disk
55       partitions. GParted enables you to change the partition organization
56       while preserving the partition contents.
57     '';
58     homepage = "https://gparted.org";
59     license = licenses.gpl2Plus;
60     platforms = platforms.linux;
61     mainProgram = "gparted";
62   };