summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-05-18 23:26:36 +0100
committerGitHub <noreply@github.com>2021-05-18 23:26:36 +0100
commit82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7 (patch)
tree4831ae430172557240ba8e280e38f758d7028ae1 /pkgs/applications
parent52833ef8c09084ffb33d6bc1fe08744307ec1340 (diff)
parent755fa6d3b3c41dc454aacd13b2615c414060f59d (diff)
downloadnixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar.gz
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar.bz2
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar.lz
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar.xz
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.tar.zst
nixpkgs-82ffc8e6610dd7cd9009d8a1835ba62e7d7ddfe7.zip
Merge pull request #123560 from stephank/fix-sunwait-darwin
sunwait: fix darwin build
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/sunwait/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/misc/sunwait/default.nix b/pkgs/applications/misc/sunwait/default.nix
index c9581fe79f6..2d1f8f46f5a 100644
--- a/pkgs/applications/misc/sunwait/default.nix
+++ b/pkgs/applications/misc/sunwait/default.nix
@@ -11,6 +11,8 @@ stdenv.mkDerivation {
     sha256 = "0cs8rdcnzsl10zia2k49a6c2z6gvp5rnf31sgn3hn5c7kgy7l3ax";
   };
 
+  makeFlags = [ "C=${stdenv.cc.targetPrefix}c++" ];
+
   installPhase = ''
     install -Dm755 sunwait -t $out/bin
   '';