qView: 5.0 -> 6.1

+5 -3
+5 -3
pkgs/applications/graphics/qview/default.nix
··· 6 6 , qttools 7 7 , qtimageformats 8 8 , qtsvg 9 + , qtx11extras 10 + , x11Support ? true 9 11 }: 10 12 11 13 mkDerivation rec { 12 14 pname = "qview"; 13 - version = "5.0"; 15 + version = "6.1"; 14 16 15 17 src = fetchFromGitHub { 16 18 owner = "jurplel"; 17 19 repo = "qView"; 18 20 rev = version; 19 - hash = "sha256-VQ0H9iPrrxO9e/kMo7yZ/zN5I2qDWBCAFacS9uGuZLI="; 21 + hash = "sha256-h1K1Smfy875NoHtgUrOvZZp0IgcQdbyuQhXU9ndM4bA="; 20 22 }; 21 23 22 24 nativeBuildInputs = [ qmake ]; ··· 26 28 qttools 27 29 qtimageformats 28 30 qtsvg 29 - ]; 31 + ] ++ lib.optionals x11Support [ qtx11extras ]; 30 32 31 33 meta = with lib; { 32 34 description = "Practical and minimal image viewer";