File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 13
13
nix-github-actions
14
14
} :
15
15
let
16
- githubSystems = builtins . attrNames nix-github-actions . lib . githubPlatforms ;
17
16
lib = nixpkgs . lib ;
18
- forAllSystems = lib . genAttrs lib . systems . flakeExposed ;
19
- forGithubSystems = lib . genAttrs githubSystems ;
17
+ # githubSystems = builtins.attrNames nix-github-actions.lib.githubPlatforms;
18
+ # forAllSystems = lib.genAttrs lib.systems.flakeExposed;
19
+ # forGithubSystems = lib.genAttrs githubSystems;
20
+ # TODO: githubSystems should be supportedSystems intersects lib.githubPlatforms
21
+ # Some of the dependencies don't build on aarch64. Will fix later
22
+ supportedSystems = [ "x86_64-linux" "x86_64-darwin" ] ;
23
+ forAllSystems = lib . genAttrs supportedSystems ;
24
+ forGithubSystems = lib . genAttrs supportedSystems ;
20
25
in {
21
26
packages = forAllSystems ( system :
22
27
let pkgs = import nixpkgs { inherit system ; } ;
25
30
src = self ;
26
31
platforms = lib . systems . flakeExposed ;
27
32
} ;
28
- # default gets duplicated in githubActions
33
+ # FIXME: default gets duplicated in githubActions
29
34
# default = self.packages.${system}.pcsx-redux;
30
35
} ) ;
31
36
You can’t perform that action at this time.
0 commit comments