summary refs log tree commit diff
diff options
context:
space:
mode:
authorStanisław Pitucha <git@viraptor.info>2023-03-24 20:55:57 +1100
committerStanisław Pitucha <git@viraptor.info>2023-03-24 20:55:57 +1100
commit632daeee456fb066858afb2e11c13d215a2cfc57 (patch)
tree1a86debe1f48d17b93332d241532c5f3292e4dc2
parent8be838254badb578300520f61091a86fd0c7d328 (diff)
downloadnixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar.gz
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar.bz2
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar.lz
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar.xz
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.tar.zst
nixpkgs-632daeee456fb066858afb2e11c13d215a2cfc57.zip
libcutl: fix darwin build
Force gcc environment since libcutl checks for gcc specifically.
-rw-r--r--pkgs/development/libraries/libcutl/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libcutl/default.nix b/pkgs/development/libraries/libcutl/default.nix
index e87dc064402..db04b5f59b5 100644
--- a/pkgs/development/libraries/libcutl/default.nix
+++ b/pkgs/development/libraries/libcutl/default.nix
@@ -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;
   };