Merge pull request #144338 from jbellerb/libressl

authored by

Maciej Krüger and committed by
GitHub
27a78cf2 42c0007e

+5 -2
+5 -2
pkgs/development/libraries/libressl/default.nix
··· 49 50 # Since 2.9.x the default location can't be configured from the build using 51 # DEFAULT_CA_FILE anymore, instead we have to patch the default value. 52 - postPatch = lib.optionalString (lib.versionAtLeast version "2.9.2") '' 53 - substituteInPlace ./tls/tls_config.c --replace '"/etc/ssl/cert.pem"' '"${cacert}/etc/ssl/certs/ca-bundle.crt"' 54 ''; 55 56 doCheck = true;
··· 49 50 # Since 2.9.x the default location can't be configured from the build using 51 # DEFAULT_CA_FILE anymore, instead we have to patch the default value. 52 + postPatch = '' 53 + patchShebangs tests/ 54 + ${lib.optionalString (lib.versionAtLeast version "2.9.2") '' 55 + substituteInPlace ./tls/tls_config.c --replace '"/etc/ssl/cert.pem"' '"${cacert}/etc/ssl/certs/ca-bundle.crt"' 56 + ''} 57 ''; 58 59 doCheck = true;