libcutl: fix darwin build

Force gcc environment since libcutl checks for gcc specifically.
This commit is contained in:
Stanisław Pitucha 2023-03-24 20:55:57 +11:00
parent 8be838254b
commit 632daeee45

View file

@ -1,5 +1,8 @@
{ lib, stdenv, fetchurl, xercesc }:
{ lib, gccStdenv, fetchurl, xercesc }:
let
stdenv = gccStdenv;
in
stdenv.mkDerivation rec {
pname = "libcutl";
version = "1.10.0";
@ -14,7 +17,6 @@ stdenv.mkDerivation rec {
homepage = "https://codesynthesis.com/projects/libcutl/";
changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}";
platforms = platforms.all;
broken = stdenv.isDarwin;
maintainers = with maintainers; [ ];
license = licenses.mit;
};