nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libcli: fix darwin build

+2 -2
+2 -2
pkgs/development/libraries/libcli/default.nix
··· 20 20 21 21 enableParallelBuilding = true; 22 22 23 - makeFlags = [ "PREFIX=$(out)" ]; 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 - platforms = platforms.linux; 29 + platforms = platforms.all; 30 30 }; 31 31 }