File tree Expand file tree Collapse file tree
packages/winapps-launcher Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/.idea
22/.vscode
33/result
4-
Original file line number Diff line number Diff line change 3131 let
3232 pkgs = import nixpkgs { inherit system ; } ;
3333 in
34- {
34+ rec {
3535 formatter = pkgs . nixfmt-rfc-style ;
3636
3737 packages . winapps = pkgs . callPackage ./packages/winapps { inherit nix-filter ; } ;
38- packages . winapps-launcher = pkgs . callPackage ./packages/winapps-launcher { } ;
38+ packages . winapps-launcher = pkgs . callPackage ./packages/winapps-launcher {
39+ inherit ( packages ) winapps ;
40+ } ;
3941 }
4042 ) ;
4143}
Original file line number Diff line number Diff line change 44 fetchFromGitHub ,
55 makeWrapper ,
66 makeDesktopItem ,
7- callPackage ,
87 yad ,
8+ winapps ? throw "Pass in the winapps package" ,
99 ...
1010} :
1111let
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
2626 nativeBuildInputs = [ makeWrapper ] ;
2727 buildInputs = [
2828 yad
29- ( callPackage ../ winapps { } )
29+ winapps
3030 ] ;
3131
3232 patches = [ ./WinApps-Launcher.patch ] ;
You can’t perform that action at this time.
0 commit comments