nixpkgs/pkgs/by-name/gp/gparted/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

113 lines
2.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
gettext,
coreutils,
gnused,
gnome,
adwaita-icon-theme,
gnugrep,
parted,
glib,
libuuid,
pkg-config,
gtkmm3,
libxml2,
gpart,
hdparm,
procps,
util-linux,
polkit,
wrapGAppsHook3,
substituteAll,
mtools,
dosfstools,
xhost,
}:
stdenv.mkDerivation rec {
pname = "gparted";
version = "1.6.0";
src = fetchurl {
url = "mirror://sourceforge/gparted/gparted-${version}.tar.gz";
sha256 = "sha256-m59Rs85JTdy1mlXhrmZ5wJQ2YE4zHb9aU21g3tbG6ls=";
};
# 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;
})
];
enableParallelBuilding = true;
configureFlags = [
"--disable-doc"
"--enable-xhost-root"
];
buildInputs = [
parted
glib
libuuid
gtkmm3
libxml2
polkit.bin
adwaita-icon-theme
];
nativeBuildInputs = [
gettext
pkg-config
wrapGAppsHook3
];
preConfigure = ''
# For ITS rules
addToSearchPath "XDG_DATA_DIRS" "${polkit.out}/share"
'';
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : "${
lib.makeBinPath [
gpart
hdparm
util-linux
procps
coreutils
gnused
gnugrep
mtools
dosfstools
xhost
]
}"
)
'';
# 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";
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;
mainProgram = "gparted";
};
}