mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 09:17:34 +00:00
cln: fix darwin aarch build
Use gcc environment explicitly. The library manual does not mention darwin explicitly and recommends only g++ as the compiler. Instead of trying to patch the source to work with clang, just use g++ as expected.
This commit is contained in:
parent
3b8e15b8d3
commit
ff84b1819c
@ -1,6 +1,6 @@
|
||||
{ lib, stdenv, fetchurl, gmp }:
|
||||
{ lib, gccStdenv, fetchurl, gmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
gccStdenv.mkDerivation rec {
|
||||
pname = "cln";
|
||||
version = "1.3.6";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user