nixpkgs/pkgs/applications/graphics/photoflare/default.nix

32 lines
859 B
Nix
Raw Normal View History

{ mkDerivation, lib, graphicsmagick, fetchFromGitHub, qmake, qtbase, qttools
2020-10-02 15:23:34 +01:00
}:
mkDerivation rec {
pname = "photoflare";
2020-11-15 12:57:28 +00:00
version = "1.6.6";
2020-10-02 15:23:34 +01:00
src = fetchFromGitHub {
owner = "PhotoFlare";
repo = "photoflare";
rev = "v${version}";
2020-11-15 12:57:28 +00:00
sha256 = "07lrlxagv1bljj607s8m0zsbzx9jrvi18bnxahnm7r4i5car5x2d";
2020-10-02 15:23:34 +01:00
};
nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase graphicsmagick ];
qmakeFlags = [ "PREFIX=${placeholder "out"}" ];
NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick";
enableParallelBuilding = true;
meta = with lib; {
2020-10-02 15:23:34 +01:00
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;
};
}