Merge pull request #145571 from WolfangAukang/pixeluvo

This commit is contained in:
Sandro 2021-11-22 16:07:08 +01:00 committed by GitHub
commit 8ce6cb961d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper
, gtk3-x11 }:
stdenv.mkDerivation rec {
pname = "pixeluvo";
version = "1.6.0-2";
src = fetchurl {
url = "http://www.pixeluvo.com/downloads/${pname}_${version}_amd64.deb";
sha256 = "sha256-QYSuD6o3kHg0DrFihYEcf9e3b8U1bu4Zf78+Akmm8yo=";
};
nativeBuildInputs = [
dpkg
makeWrapper
autoPatchelfHook
];
buildInputs = [
gtk3-x11
stdenv.cc.cc
];
libPath = lib.makeLibraryPath buildInputs;
dontBuild = true;
dontConfigure = true;
unpackPhase = ''
dpkg-deb -x ${src} ./
'';
installPhase = ''
runHook preInstall
mv usr $out
mv opt $out
install -Dm644 $out/opt/pixeluvo/pixeluvo.png -t $out/share/pixmaps/
substituteInPlace $out/share/applications/pixeluvo.desktop \
--replace '/opt/pixeluvo/pixeluvo.png' pixeluvo
makeWrapper $out/opt/pixeluvo/bin/Pixeluvo64 $out/bin/pixeluvo \
--prefix LD_LIBRARY_PATH : ${libPath}
runHook postInstall
'';
meta = with lib; {
description = "A Beautifully Designed Image and Photo Editor for Windows and Linux";
homepage = "http://www.pixeluvo.com/";
license = licenses.unfree;
maintainers = with maintainers; [ wolfangaukang ];
};
}

View File

@ -25801,6 +25801,8 @@ with pkgs;
pixelnuke = callPackage ../applications/graphics/pixelnuke { };
pixeluvo = callPackage ../applications/graphics/pixeluvo { };
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
shepherd = nodePackages."@nerdwallet/shepherd";