File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 21
21
packages = forAllSystems ( system :
22
22
let pkgs = import nixpkgs { inherit system ; } ;
23
23
in {
24
- pcsx-redux = pkgs . callPackage ./pcsx-redux.nix { src = self ; } ;
24
+ pcsx-redux = pkgs . callPackage ./pcsx-redux.nix {
25
+ src = self ;
26
+ platforms = lib . systems . flakeExposed ;
27
+ } ;
25
28
# default gets duplicated in githubActions
26
29
# default = self.packages.${system}.pcsx-redux;
27
30
} ) ;
Original file line number Diff line number Diff line change 28
28
ucl ,
29
29
llhttp ,
30
30
31
+ src ,
31
32
debugBuild ? false ,
32
- src
33
+ platforms ,
33
34
} :
34
35
let
35
36
# get rid of this nonsense
@@ -197,9 +198,9 @@ in stdenv.mkDerivation {
197
198
meta = {
198
199
homepage = "https://pcsx-redux.consoledev.net" ;
199
200
description = "PlayStation 1 emulator and debugger" ;
200
- #license = lib.licenses.gpl3Only ;
201
+ #license = lib.licenses.;
201
202
mainProgram = "pcsx-redux" ;
202
- #maintainers = with lib.maintainers; [ guibou AndersonTorres ];
203
- platforms = lib . platforms . linux ;
203
+ #maintainers = with lib.maintainers; [];
204
+ inherit platforms ;
204
205
} ;
205
206
}
You can’t perform that action at this time.
0 commit comments