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.

+2 -2
+2 -2
pkgs/development/libraries/cln/default.nix
··· 1 - { lib, stdenv, fetchurl, gmp }: 1 + { lib, gccStdenv, fetchurl, gmp }: 2 2 3 - stdenv.mkDerivation rec { 3 + gccStdenv.mkDerivation rec { 4 4 pname = "cln"; 5 5 version = "1.3.6"; 6 6