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