mirror of
https://github.com/urbit/shrub.git
synced 2024-12-12 10:29:01 +03:00
9 lines
262 B
Nix
9 lines
262 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "ca-bundle.h";
|
|
builder = ./builder.sh;
|
|
native_inputs = with crossenv.nixpkgs; [ cacert xxd ];
|
|
SSL_CERT_FILE = "${crossenv.nixpkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
|
|
}
|