Skip to content

Commit cfb9ea5

Browse files
Nix: Update package metadata
1 parent 9281a15 commit cfb9ea5

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

flake.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@
2121
packages = forAllSystems (system:
2222
let pkgs = import nixpkgs { inherit system; };
2323
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+
};
2528
# default gets duplicated in githubActions
2629
# default = self.packages.${system}.pcsx-redux;
2730
});

pcsx-redux.nix

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
ucl,
2929
llhttp,
3030

31+
src,
3132
debugBuild ? false,
32-
src
33+
platforms,
3334
}:
3435
let
3536
# get rid of this nonsense
@@ -197,9 +198,9 @@ in stdenv.mkDerivation {
197198
meta = {
198199
homepage = "https://pcsx-redux.consoledev.net";
199200
description = "PlayStation 1 emulator and debugger";
200-
#license = lib.licenses.gpl3Only;
201+
#license = lib.licenses.;
201202
mainProgram = "pcsx-redux";
202-
#maintainers = with lib.maintainers; [ guibou AndersonTorres ];
203-
platforms = lib.platforms.linux;
203+
#maintainers = with lib.maintainers; [];
204+
inherit platforms;
204205
};
205206
}

0 commit comments

Comments
 (0)