biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / graphics / photoflare / default.nix
blob3f47a0073d2457bf68da0a273897900497b4fb41
1 { mkDerivation, lib, graphicsmagick, fetchFromGitHub, qmake, qtbase, qttools
2 }:
4 mkDerivation rec {
5   pname = "photoflare";
6   version = "1.6.13";
8   src = fetchFromGitHub {
9     owner = "PhotoFlare";
10     repo = "photoflare";
11     rev = "v${version}";
12     sha256 = "sha256-0eAuof/FBro2IKxkJ6JHauW6C96VTPxy7QtfPVzPFi4=";
13   };
15   nativeBuildInputs = [ qmake qttools ];
16   buildInputs = [ qtbase graphicsmagick ];
18   qmakeFlags = [ "PREFIX=${placeholder "out"}" ];
20   env.NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick";
22   meta = with lib; {
23     description = "A cross-platform image editor with a powerful features and a very friendly graphical user interface";
24     mainProgram = "photoflare";
25     homepage = "https://photoflare.io";
26     maintainers = [ maintainers.omgbebebe ];
27     license = licenses.gpl3Plus;
28     platforms = platforms.linux;
29   };