mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
Merge pull request #209018 from wegank/solicurses-darwin
solicurses: unbreak on darwin
This commit is contained in:
commit
fe1bb44eee
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue