tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qView: 5.0 -> 6.1
Lương Việt Hoàng
2 years ago
a4a20966
121fcf0d
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
qview
default.nix
+5
-3
pkgs/applications/graphics/qview/default.nix
···
6
6
, qttools
7
7
, qtimageformats
8
8
, qtsvg
9
9
+
, qtx11extras
10
10
+
, x11Support ? true
9
11
}:
10
12
11
13
mkDerivation rec {
12
14
pname = "qview";
13
13
-
version = "5.0";
15
15
+
version = "6.1";
14
16
15
17
src = fetchFromGitHub {
16
18
owner = "jurplel";
17
19
repo = "qView";
18
20
rev = version;
19
19
-
hash = "sha256-VQ0H9iPrrxO9e/kMo7yZ/zN5I2qDWBCAFacS9uGuZLI=";
21
21
+
hash = "sha256-h1K1Smfy875NoHtgUrOvZZp0IgcQdbyuQhXU9ndM4bA=";
20
22
};
21
23
22
24
nativeBuildInputs = [ qmake ];
···
26
28
qttools
27
29
qtimageformats
28
30
qtsvg
29
29
-
];
31
31
+
] ++ lib.optionals x11Support [ qtx11extras ];
30
32
31
33
meta = with lib; {
32
34
description = "Practical and minimal image viewer";