vorta: fix icons

This commit is contained in:
ash
2025-02-10 17:06:39 +00:00
parent 6c2770d96d
commit 298a47d4af

View File

@@ -9,6 +9,7 @@
versionCheckHook,
makeFontsConf,
qtbase,
qtsvg,
}:
python3Packages.buildPythonApplication rec {
@@ -27,9 +28,13 @@ python3Packages.buildPythonApplication rec {
wrapQtAppsHook
];
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
qtwayland
];
buildInputs =
[
qtsvg
]
++ lib.optionals stdenv.hostPlatform.isLinux [
qtwayland
];
build-system = with python3Packages; [
setuptools