qview: fix build on darwin, support extra formats

Clarified license to GPL3+.
Building on darwin requires qtsvg.
qtimageformats adds support for extra image formats, such as WebP.

+11 -2
+11 -2
pkgs/applications/graphics/qview/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qmake, qtbase }: 2 3 mkDerivation rec { 4 pname = "qview"; ··· 15 16 buildInputs = [ 17 qtbase 18 ]; 19 20 patchPhase = '' ··· 24 meta = with lib; { 25 description = "Practical and minimal image viewer"; 26 homepage = "https://interversehq.com/qview/"; 27 - license = licenses.gpl3; 28 maintainers = with maintainers; [ acowley ]; 29 platforms = platforms.all; 30 };
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , qmake 5 + , qtbase 6 + , qtimageformats 7 + , qtsvg 8 + }: 9 10 mkDerivation rec { 11 pname = "qview"; ··· 22 23 buildInputs = [ 24 qtbase 25 + qtimageformats 26 + qtsvg 27 ]; 28 29 patchPhase = '' ··· 33 meta = with lib; { 34 description = "Practical and minimal image viewer"; 35 homepage = "https://interversehq.com/qview/"; 36 + license = licenses.gpl3Plus; 37 maintainers = with maintainers; [ acowley ]; 38 platforms = platforms.all; 39 };