uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
56
pkgs/tools/misc/gparted/default.nix
Normal file
56
pkgs/tools/misc/gparted/default.nix
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ lib, stdenv, fetchurl, intltool, gettext, coreutils, gnused, gnome
|
||||
, gnugrep, parted, glib, libuuid, pkg-config, gtkmm3, libxml2
|
||||
, gpart, hdparm, procps, util-linux, polkit, wrapGAppsHook, substituteAll
|
||||
, mtools, dosfstools
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gparted";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/gparted/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-5Sk6eS5T/b66KcSoNBE82WA9DWOTMNqTGkaL82h4h74=";
|
||||
};
|
||||
|
||||
# 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" ];
|
||||
|
||||
buildInputs = [ parted glib libuuid gtkmm3 libxml2 polkit.bin gnome.adwaita-icon-theme ];
|
||||
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";
|
||||
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;
|
||||
};
|
||||
}
|
||||
12
pkgs/tools/misc/gparted/polkit.patch
Normal file
12
pkgs/tools/misc/gparted/polkit.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff -ru old/gparted-1.0.0/configure gparted-1.0.0/configure
|
||||
--- old/gparted-1.0.0/configure 2019-05-29 12:02:13.000000000 -0400
|
||||
+++ gparted-1.0.0/configure 2019-08-08 18:09:52.792795781 -0400
|
||||
@@ -16145,7 +16145,7 @@
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pkexec >= $PKEXEC_REQUIRED_VERSION" >&5
|
||||
$as_echo_n "checking for pkexec >= $PKEXEC_REQUIRED_VERSION... " >&6; }
|
||||
PKEXEC_REQUIRED_INT=`echo "$PKEXEC_REQUIRED_VERSION" | $AWK -F. '{print $1 * 10000 + $2}'`
|
||||
-PKEXEC_VERSION_OUTPUT=`pkexec --version 2> /dev/null` ||
|
||||
+PKEXEC_VERSION_OUTPUT='pkexec version @polkit_version@' ||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
|
||||
$as_echo "not found" >&6; }
|
||||
if test "x$PKEXEC_VERSION_OUTPUT" != 'x'; then
|
||||
Loading…
Add table
Add a link
Reference in a new issue