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

30 lines
828 B
Nix
Raw Normal View History

{ mkDerivation, lib, graphicsmagick, fetchFromGitHub, qmake, qtbase, qttools
2020-10-02 07:23:34 -07:00
}:
mkDerivation rec {
pname = "photoflare";
2021-03-12 04:36:06 -08:00
version = "1.6.7";
2020-10-02 07:23:34 -07:00
src = fetchFromGitHub {
owner = "PhotoFlare";
repo = "photoflare";
rev = "v${version}";
2021-03-12 04:36:06 -08:00
sha256 = "sha256-Gx3YP29NrNHp0p05a1O4Xb9kqkA6pQLTJZ3/wOx+BWY=";
2020-10-02 07:23:34 -07:00
};
nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase graphicsmagick ];
qmakeFlags = [ "PREFIX=${placeholder "out"}" ];
NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick";
meta = with lib; {
2020-10-02 07:23:34 -07: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.gpl3Plus;
2020-10-02 07:23:34 -07:00
platforms = platforms.linux;
};
}