biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / pixeluvo / default.nix
blob9d19e137096580a912c12e0f56c720e564da1dad
1 { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper
2 , gtk3-x11 }:
4 stdenv.mkDerivation rec {
5   pname = "pixeluvo";
6   version = "1.6.0-2";
8   src = fetchurl {
9     url = "http://www.pixeluvo.com/downloads/${pname}_${version}_amd64.deb";
10     sha256 = "sha256-QYSuD6o3kHg0DrFihYEcf9e3b8U1bu4Zf78+Akmm8yo=";
11   };
13   nativeBuildInputs = [
14     dpkg
15     makeWrapper
16     autoPatchelfHook
17   ];
19   buildInputs = [
20     gtk3-x11
21     stdenv.cc.cc
22   ];
24   libPath = lib.makeLibraryPath buildInputs;
26   dontBuild = true;
27   dontConfigure = true;
29   unpackPhase = ''
30     dpkg-deb -x ${src} ./
31   '';
33   installPhase = ''
34     runHook preInstall
36     mv usr $out
37     mv opt $out
38     install -Dm644 $out/opt/pixeluvo/pixeluvo.png -t $out/share/pixmaps/
40     substituteInPlace $out/share/applications/pixeluvo.desktop \
41       --replace '/opt/pixeluvo/pixeluvo.png' pixeluvo
43     makeWrapper $out/opt/pixeluvo/bin/Pixeluvo64 $out/bin/pixeluvo \
44       --prefix LD_LIBRARY_PATH : ${libPath}
46     runHook postInstall
47   '';
49   meta = with lib; {
50     description = "Beautifully Designed Image and Photo Editor for Windows and Linux";
51     homepage = "http://www.pixeluvo.com/";
52     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
53     license = licenses.unfree;
54     platforms = [ "x86_64-linux" ];
55     maintainers = [ ];
56     mainProgram = "pixeluvo";
57   };