Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

perl-IO-Socket-SSL: fix default path to SSL certs

(cherry picked from commit 98096004ce316969e3b4494d102c1fb172b7e474)

+5
+5
pkgs/top-level/perl-packages.nix
··· 6227 6227 sha256 = "723517ea71f90105579e7db7a1a2e053bf5c8142a187df8bc1fe3881c3383f67"; 6228 6228 }; 6229 6229 propagatedBuildInputs = [ NetSSLeay URI ]; 6230 + # Fix path to default certificate store. 6231 + postPatch = '' 6232 + substituteInPlace lib/IO/Socket/SSL.pm \ 6233 + --replace "\$openssldir/cert.pem" "/etc/ssl/certs/ca-certificates.crt" 6234 + ''; 6230 6235 meta = { 6231 6236 homepage = https://github.com/noxxi/p5-io-socket-ssl; 6232 6237 description = "Nearly transparent SSL encapsulation for IO::Socket::INET";