mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
parent
afac8c61e9
commit
bfccf8e42c
@ -52,6 +52,8 @@ stdenv.mkDerivation rec {
|
||||
cp -v ca-bundle.crt $out/etc/ssl/certs
|
||||
'';
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
homepage = https://curl.haxx.se/docs/caextract.html;
|
||||
description = "A bundle of X.509 certificates of public Certificate Authorities (CA)";
|
||||
|
6
pkgs/data/misc/cacert/setup-hook.sh
Normal file
6
pkgs/data/misc/cacert/setup-hook.sh
Normal file
@ -0,0 +1,6 @@
|
||||
cacertHook() {
|
||||
export SSL_CERT_FILE=@out@/etc/ssl/certs/ca-bundle.crt
|
||||
}
|
||||
|
||||
envHooks+=(cacertHook)
|
||||
crossEnvHooks+=(cacertHook)
|
Loading…
Reference in New Issue
Block a user