blob: 08f5c2228d765703e1fa197bb420892bfc9287a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{ depot, pkgs, ... }:
(depot.tvix.crates.workspaceMembers.tvix-glue.build.override {
runTests = true;
testPreRun = ''
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt;
'';
})
|