tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
castty: fix darwin build
Stéphan Kochen
5 years ago
854207d1
1299c42d
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
castty
default.nix
+4
-1
pkgs/tools/misc/castty/default.nix
reviewed
···
13
13
14
14
buildInputs = [ libsoundio lame ];
15
15
16
16
-
makeFlags = [ "PREFIX=$(out)" ];
16
16
+
makeFlags = [
17
17
+
"CC=${stdenv.cc.targetPrefix}cc"
18
18
+
"PREFIX=$(out)"
19
19
+
];
17
20
18
21
meta = with lib; {
19
22
description = "CLI tool to record audio-enabled screencasts of your terminal, for the web";