libcutl: fix darwin build
Force gcc environment since libcutl checks for gcc specifically.
This commit is contained in:
parent
8be838254b
commit
632daeee45
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user