tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
libcli: fix darwin build
Ben Siraphob
5 years ago
c29546f2
fc348a5c
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libcli
default.nix
+2
-2
pkgs/development/libraries/libcli/default.nix
reviewed
···
20
20
21
21
enableParallelBuilding = true;
22
22
23
23
-
makeFlags = [ "PREFIX=$(out)" ];
23
23
+
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "AR=${stdenv.cc.targetPrefix}ar" "PREFIX=$(out)" ];
24
24
25
25
meta = with lib; {
26
26
description = "Emulate a Cisco-style telnet command-line interface";
27
27
homepage = "http://sites.dparrish.com/libcli";
28
28
license = licenses.lgpl21Plus;
29
29
-
platforms = platforms.linux;
29
29
+
platforms = platforms.all;
30
30
};
31
31
}