photoflare: init at 1.6.5
This commit is contained in:
parent
1ee6cafaa0
commit
6cb2d3f9dd
31
pkgs/applications/graphics/photoflare/default.nix
Normal file
31
pkgs/applications/graphics/photoflare/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ mkDerivation, stdenv, graphicsmagick, fetchFromGitHub, qmake, qtbase, qttools
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "photoflare";
|
||||||
|
version = "1.6.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "PhotoFlare";
|
||||||
|
repo = "photoflare";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0a394324h7ds567z3i3pw6kkii78n4qwdn129kgkkm996yh03q89";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake qttools ];
|
||||||
|
buildInputs = [ qtbase graphicsmagick ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A cross-platform image editor with a powerful features and a very friendly graphical user interface";
|
||||||
|
homepage = "https://photoflare.io";
|
||||||
|
maintainers = [ maintainers.omgbebebe ];
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -22897,6 +22897,8 @@ in
|
|||||||
|
|
||||||
photoqt = libsForQt5.callPackage ../applications/graphics/photoqt { };
|
photoqt = libsForQt5.callPackage ../applications/graphics/photoqt { };
|
||||||
|
|
||||||
|
photoflare = libsForQt5.callPackage ../applications/graphics/photoflare { };
|
||||||
|
|
||||||
photoflow = callPackage ../applications/graphics/photoflow { };
|
photoflow = callPackage ../applications/graphics/photoflow { };
|
||||||
|
|
||||||
phototonic = libsForQt5.callPackage ../applications/graphics/phototonic { };
|
phototonic = libsForQt5.callPackage ../applications/graphics/phototonic { };
|
||||||
|
Loading…
Reference in New Issue
Block a user