Merge pull request #145571 from WolfangAukang/pixeluvo
This commit is contained in:
commit
8ce6cb961d
2 changed files with 57 additions and 0 deletions
55
pkgs/applications/graphics/pixeluvo/default.nix
Normal file
55
pkgs/applications/graphics/pixeluvo/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25801,6 +25801,8 @@ with pkgs;
|
||||||
|
|
||||||
pixelnuke = callPackage ../applications/graphics/pixelnuke { };
|
pixelnuke = callPackage ../applications/graphics/pixelnuke { };
|
||||||
|
|
||||||
|
pixeluvo = callPackage ../applications/graphics/pixeluvo { };
|
||||||
|
|
||||||
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
|
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
|
||||||
|
|
||||||
shepherd = nodePackages."@nerdwallet/shepherd";
|
shepherd = nodePackages."@nerdwallet/shepherd";
|
||||||
|
|
Loading…
Reference in a new issue