aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix
new file mode 100644
index 000000000000..6292fb4a7227
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/misc/gparted/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchurl, intltool, gettext, makeWrapper, coreutils, gnused, gnome3
+, gnugrep, parted, glib, libuuid, pkgconfig, gtkmm3, libxml2
+, gpart, hdparm, procps, utillinux, polkit, wrapGAppsHook, substituteAll
+}:
+
+stdenv.mkDerivation rec {
+ name = "gparted-1.1.0";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/gparted/${name}.tar.gz";
+ sha256 = "092rgwjh1825fal6v3yafq2wr0i61hh0a2n0j4296zn0zdx7pzp2";
+ };
+
+ # 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 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
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Graphical disk partitioning tool";
+ 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;
+ };
+}