mirror of
https://github.com/winapps-org/winapps.git
synced 2025-07-31 16:06:45 +02:00
fix(nix): correct build failure
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,3 @@
|
||||
/.idea
|
||||
/.vscode
|
||||
/result
|
||||
|
||||
|
@@ -31,11 +31,13 @@
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in
|
||||
{
|
||||
rec {
|
||||
formatter = pkgs.nixfmt-rfc-style;
|
||||
|
||||
packages.winapps = pkgs.callPackage ./packages/winapps { inherit nix-filter; };
|
||||
packages.winapps-launcher = pkgs.callPackage ./packages/winapps-launcher { };
|
||||
packages.winapps-launcher = pkgs.callPackage ./packages/winapps-launcher {
|
||||
inherit (packages) winapps;
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@@ -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 ];
|
||||
|
Reference in New Issue
Block a user