lol

Merge pull request #209018 from wegank/solicurses-darwin

solicurses: unbreak on darwin

authored by

Thiago Kenji Okada and committed by
GitHub
fe1bb44e eae63548

+4 -2
+4 -2
pkgs/games/solicurses/default.nix
··· 23 23 cd build 24 24 ''; 25 25 26 + makeFlags = [ 27 + "CC=${stdenv.cc.targetPrefix}c++" 28 + ]; 29 + 26 30 installPhase = '' 27 31 install -D SoliCurses.out $out/bin/solicurses 28 32 ''; ··· 33 37 maintainers = with maintainers; [ laalsaas ]; 34 38 license = licenses.gpl3Only; 35 39 inherit (ncurses.meta) platforms; 36 - # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 37 - broken = stdenv.isDarwin; 38 40 }; 39 41 }