fix(nix): correct build failure

This commit is contained in:
Oskar Manhart
2025-07-22 18:24:10 +02:00
parent 4010972963
commit 03dff50916
3 changed files with 6 additions and 5 deletions

View File

@@ -4,8 +4,8 @@
fetchFromGitHub,
makeWrapper,
makeDesktopItem,
callPackage,
yad,
winapps ? throw "Pass in the winapps package",
...
}:
let
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
yad
(callPackage ../winapps { })
winapps
];
patches = [ ./WinApps-Launcher.patch ];