Merge pull request #261875 from player131007/update-qview

qView: 5.0 -> 6.1

authored by

Anthony Cowley and committed by
GitHub
ef21b9f5 9c7a70fc

+7 -3
+7 -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 }; 23 + 24 + qmakeFlags = lib.optionals (!x11Support) [ "CONFIG+=NO_X11" ]; 21 25 22 26 nativeBuildInputs = [ qmake ]; 23 27 ··· 26 30 qttools 27 31 qtimageformats 28 32 qtsvg 29 - ]; 33 + ] ++ lib.optionals x11Support [ qtx11extras ]; 30 34 31 35 meta = with lib; { 32 36 description = "Practical and minimal image viewer";