nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #315141 from sandydoo/fix-elm

elmPackages.elm: fix build failure on darwin

authored by

Marek Fajkus and committed by
GitHub
6f29411d daadd0b7

+6
+6
pkgs/development/haskell-modules/configuration-darwin.nix
··· 110 110 substituteInPlace System/X509/MacOS.hs --replace security /usr/bin/security 111 111 '' + (drv.postPatch or ""); 112 112 }) super.x509-system; 113 + crypton-x509-system = overrideCabal (drv: 114 + lib.optionalAttrs (!pkgs.stdenv.cc.nativeLibc) { 115 + postPatch = '' 116 + substituteInPlace System/X509/MacOS.hs --replace security /usr/bin/security 117 + '' + (drv.postPatch or ""); 118 + }) super.crypton-x509-system; 113 119 114 120 # https://github.com/haskell-foundation/foundation/pull/412 115 121 foundation = dontCheck super.foundation;