Test / Create distribution (push) Successful in 53s
Test / Sandbox (push) Successful in 2m59s
Test / Hakurei (push) Successful in 4m50s
Test / Sandbox (race detector) (push) Successful in 6m19s
Test / Hakurei (race detector) (push) Successful in 7m36s
Test / ShareFS (push) Successful in 7m58s
Test / Flake checks (push) Successful in 1m17s
Signed-off-by: Ophestra <cat@gensokyo.uk>
47 lines
838 B
Go
47 lines
838 B
Go
package openssl {
|
|
description = "TLS/SSL and crypto library";
|
|
website = "https://www.openssl.org";
|
|
anitya = 2566;
|
|
// strange malformed tags treated as pre-releases in Anitya
|
|
latest = anityaFallback;
|
|
|
|
version# = "4.0.1";
|
|
source = remoteGitHubRelease {
|
|
suffix = "openssl/openssl";
|
|
tag = "openssl-"+version;
|
|
name = "openssl-"+version+".tar.gz";
|
|
checksum = "8FLTB0bZAKyjpmgO4kU5Og-XuSb2_77fxDfEbpOMPKTnIWxQDo7n8e4UdUuc2YIc";
|
|
compress = gzip;
|
|
};
|
|
|
|
env = [
|
|
"CC=cc",
|
|
];
|
|
|
|
exec = make {
|
|
defaults = false;
|
|
|
|
configureName = "/usr/src/openssl/Configure";
|
|
configure = {
|
|
"prefix": "/system";
|
|
"libdir": "lib";
|
|
"openssldir": "etc/ssl";
|
|
"": "no-docs";
|
|
};
|
|
|
|
check = [
|
|
"HARNESS_JOBS=" + jobsE,
|
|
"TESTS='-test_bio_dgram'",
|
|
"test",
|
|
];
|
|
};
|
|
|
|
inputs = [
|
|
perl,
|
|
coreutils,
|
|
|
|
zlib,
|
|
kernel-headers,
|
|
];
|
|
}
|