Skip to content

Commit

Permalink
Merge pull request #315141 from sandydoo/fix-elm
Browse files Browse the repository at this point in the history
elmPackages.elm: fix build failure on darwin
  • Loading branch information
turboMaCk authored Jun 5, 2024
2 parents daadd0b + 9dd7a82 commit 6f29411
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/haskell-modules/configuration-darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ self: super: ({
substituteInPlace System/X509/MacOS.hs --replace security /usr/bin/security
'' + (drv.postPatch or "");
}) super.x509-system;
crypton-x509-system = overrideCabal (drv:
lib.optionalAttrs (!pkgs.stdenv.cc.nativeLibc) {
postPatch = ''
substituteInPlace System/X509/MacOS.hs --replace security /usr/bin/security
'' + (drv.postPatch or "");
}) super.crypton-x509-system;

# https://github.com/haskell-foundation/foundation/pull/412
foundation = dontCheck super.foundation;
Expand Down

0 comments on commit 6f29411

Please sign in to comment.