Merge pull request #222873 from viraptor/libcutl-darwin

libcutl: fix darwin build
This commit is contained in:
Weijia Wang 2023-03-24 15:15:06 +02:00 committed by GitHub
commit c567c0023a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};