summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/graphics/qview/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/qview/default.nix b/pkgs/applications/graphics/qview/default.nix
index 001616ab41d..7f4f4cc1a97 100644
--- a/pkgs/applications/graphics/qview/default.nix
+++ b/pkgs/applications/graphics/qview/default.nix
@@ -1,4 +1,11 @@
-{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase }:
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, qmake
+, qtbase
+, qtimageformats
+, qtsvg
+}:
 
 mkDerivation rec {
   pname = "qview";
@@ -15,6 +22,8 @@ mkDerivation rec {
 
   buildInputs = [
     qtbase
+    qtimageformats
+    qtsvg
   ];
 
   patchPhase = ''
@@ -24,7 +33,7 @@ mkDerivation rec {
   meta = with lib; {
     description = "Practical and minimal image viewer";
     homepage = "https://interversehq.com/qview/";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     maintainers = with maintainers; [ acowley ];
     platforms = platforms.all;
   };