Merge pull request #123560 from stephank/fix-sunwait-darwin

sunwait: fix darwin build
This commit is contained in:
Robert Scott 2021-05-18 23:26:36 +01:00 committed by GitHub
commit 82ffc8e661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,8 @@ stdenv.mkDerivation {
sha256 = "0cs8rdcnzsl10zia2k49a6c2z6gvp5rnf31sgn3hn5c7kgy7l3ax";
};
makeFlags = [ "C=${stdenv.cc.targetPrefix}c++" ];
installPhase = ''
install -Dm755 sunwait -t $out/bin
'';