about summary refs log tree commit diff
path: root/pkgs/applications/graphics/photoflare
diff options
context:
space:
mode:
authoromg <omgbebebe@gmail.com>2021-03-13 11:40:29 +0400
committeromg <omgbebebe@gmail.com>2021-03-13 11:52:31 +0400
commitb31f3593ed2bff6d4695f92417debdff603897b1 (patch)
treee131fd511460c16de29548ea57c889ae5f558fd0 /pkgs/applications/graphics/photoflare
parent7fcc4a8a84d6a6a1b07c0e375d55e991749e786d (diff)
photoflare: fix warnings
- set license to gpl3Plus
- remove unnecessary `enableParallelBuilding` parameter
Diffstat (limited to 'pkgs/applications/graphics/photoflare')
-rw-r--r--pkgs/applications/graphics/photoflare/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/photoflare/default.nix b/pkgs/applications/graphics/photoflare/default.nix
index 0c25364b76aa3..303f5170d8e68 100644
--- a/pkgs/applications/graphics/photoflare/default.nix
+++ b/pkgs/applications/graphics/photoflare/default.nix
@@ -19,13 +19,11 @@ mkDerivation rec {
 
   NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick";
 
-  enableParallelBuilding = true;
-
   meta = with 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;
+    license = licenses.gpl3Plus;
     platforms = platforms.linux;
   };
 }