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:
Stanisław Pitucha 2023-03-19 12:19:43 +11:00
parent 3b8e15b8d3
commit ff84b1819c

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl, gmp }:
{ lib, gccStdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
gccStdenv.mkDerivation rec {
pname = "cln";
version = "1.3.6";