mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
103 lines
2.7 KiB
Nix
103 lines
2.7 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, unzip
|
|
, udev
|
|
, nwjs
|
|
, gcc-unwrapped
|
|
, autoPatchelfHook
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, wrapGAppsHook3
|
|
, makeWrapper
|
|
, pinegrowVersion ? "7"
|
|
}:
|
|
|
|
let
|
|
# major version upgrade requires a new license. So keep version 6 around.
|
|
versions = {
|
|
"6" = {
|
|
version = "6.8";
|
|
src = fetchurl {
|
|
url = "https://download.pinegrow.com/PinegrowLinux64.${versions."6".version}.zip";
|
|
hash = "sha256-gqRmu0VR8Aj57UwYYLKICd4FnYZMhM6pTTSGIY5MLMk=";
|
|
};
|
|
};
|
|
"7" = {
|
|
version = "7.8";
|
|
src = fetchurl {
|
|
url = "https://github.com/Pinegrow/PinegrowReleases/releases/download/pg${builtins.substring 0 4 (versions."7".version)}/PinegrowLinux64.${versions."7".version}.zip";
|
|
hash = "sha256-tYQfPfzKRwClNwgSoJfMwG3LHhi3O/iFuuwIVHS8OXk=";
|
|
};
|
|
};
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pinegrow";
|
|
# deactivate auto update, because an old 6.21 version is getting mixed up
|
|
# see e.g. https://github.com/NixOS/nixpkgs/pull/184460
|
|
version = versions.${pinegrowVersion}.version; # nixpkgs-update: no auto update
|
|
|
|
src = versions.${pinegrowVersion}.src;
|
|
|
|
nativeBuildInputs = [
|
|
unzip
|
|
autoPatchelfHook
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
udev
|
|
nwjs
|
|
gcc-unwrapped
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
makeWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gcc-unwrapped.lib gtk3 udev ]}"
|
|
"--prefix PATH : ${lib.makeBinPath [ stdenv.cc ]}"
|
|
];
|
|
|
|
sourceRoot = ".";
|
|
|
|
dontUnpack = true;
|
|
|
|
# Extract and copy executable in $out/bin
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/applications $out/bin $out/opt/bin
|
|
# we can't unzip it in $out/lib, because nw.js will start with
|
|
# an empty screen. Therefore it will be unzipped in a non-typical
|
|
# folder and symlinked.
|
|
unzip -q $src -d $out/opt/pinegrow
|
|
substituteInPlace $out/opt/pinegrow/Pinegrow.desktop \
|
|
--replace 'Exec=sh -c "$(dirname %k)/PinegrowLibrary"' 'Exec=sh -c "$out/bin/pinegrow"'
|
|
mv $out/opt/pinegrow/Pinegrow.desktop $out/share/applications/pinegrow.desktop
|
|
ln -s $out/opt/pinegrow/PinegrowLibrary $out/bin/pinegrow
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# GSETTINGS_SCHEMAS_PATH is not set in installPhase
|
|
preFixup = ''
|
|
wrapProgram $out/bin/pinegrow \
|
|
''${makeWrapperArgs[@]} \
|
|
''${gappsWrapperArgs[@]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pinegrow.com";
|
|
description = "UI Web Editor";
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = with licenses; [ unfreeRedistributable ];
|
|
maintainers = with maintainers; [ gador ];
|
|
mainProgram = "pinegrow";
|
|
};
|
|
}
|