From b31f3593ed2bff6d4695f92417debdff603897b1 Mon Sep 17 00:00:00 2001 From: omg Date: Sat, 13 Mar 2021 11:40:29 +0400 Subject: [PATCH] photoflare: fix warnings - set license to gpl3Plus - remove unnecessary `enableParallelBuilding` parameter --- pkgs/applications/graphics/photoflare/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/photoflare/default.nix b/pkgs/applications/graphics/photoflare/default.nix index 0c25364b76a..303f5170d8e 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; }; }