Merge pull request #122767 from stephank/fix-castty-darwin

castty: fix darwin build
This commit is contained in:
Robert Scott 2021-05-12 21:48:17 +01:00 committed by GitHub
commit 6751553404
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,10 @@ stdenv.mkDerivation {
buildInputs = [ libsoundio lame ];
makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
"PREFIX=$(out)"
];
meta = with lib; {
description = "CLI tool to record audio-enabled screencasts of your terminal, for the web";