summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2023-01-08 12:08:29 +0000
committerGitHub <noreply@github.com>2023-01-08 12:08:29 +0000
commitfe1bb44eeebda86974b8a83aad532f55232cb28d (patch)
tree3a300d45538fd3be9160f11a8a0c41873a66dedb /pkgs/games
parenteae63548c343ce83ad5f51142e30a61bfcff445b (diff)
parent8e4ef13ceb2131559b5954ef36d9e5d0a730d369 (diff)
Merge pull request #209018 from wegank/solicurses-darwin
solicurses: unbreak on darwin
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/solicurses/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/games/solicurses/default.nix b/pkgs/games/solicurses/default.nix
index a0c0263a5a30..3b0a60cb1e81 100644
--- a/pkgs/games/solicurses/default.nix
+++ b/pkgs/games/solicurses/default.nix
@@ -23,6 +23,10 @@ stdenv.mkDerivation {
cd build
'';
+ makeFlags = [
+ "CC=${stdenv.cc.targetPrefix}c++"
+ ];
+
installPhase = ''
install -D SoliCurses.out $out/bin/solicurses
'';
@@ -33,7 +37,5 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ laalsaas ];
license = licenses.gpl3Only;
inherit (ncurses.meta) platforms;
- # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
- broken = stdenv.isDarwin;
};
}