Skip to content

Commit 248f25a

Browse files
authored
vorta: fix icons (#380945)
2 parents 6ad938d + 298a47d commit 248f25a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pkgs/applications/backup/vorta/default.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
versionCheckHook,
1010
makeFontsConf,
1111
qtbase,
12+
qtsvg,
1213
}:
1314

1415
python3Packages.buildPythonApplication rec {
@@ -27,9 +28,13 @@ python3Packages.buildPythonApplication rec {
2728
wrapQtAppsHook
2829
];
2930

30-
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
31-
qtwayland
32-
];
31+
buildInputs =
32+
[
33+
qtsvg
34+
]
35+
++ lib.optionals stdenv.hostPlatform.isLinux [
36+
qtwayland
37+
];
3338

3439
build-system = with python3Packages; [
3540
setuptools

0 commit comments

Comments
 (0)