Files
hakurei/internal/rosa/package/openssl.az
T
cat 7193656b6a
Test / Create distribution (push) Successful in 54s
Test / Sandbox (push) Successful in 2m59s
Test / Hakurei (push) Successful in 4m49s
Test / Sandbox (race detector) (push) Successful in 5m50s
Test / Hakurei (race detector) (push) Successful in 7m11s
Test / ShareFS (push) Successful in 7m32s
Test / Flake checks (push) Successful in 1m10s
internal/rosa: improve helper bindings
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-08-10 21:55:47 +09:00

49 lines
858 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;
block = "python";
version# = "3.6.2";
source = remoteGitHubRelease {
suffix = "openssl/openssl";
tag = "openssl-"+version;
name = "openssl-"+version+".tar.gz";
checksum = "jH004dXTiE01Hp0kyShkWXwrSHEksZi4i_3v47D9H9Uz9LQ1aMwF7mrl2Tb4t_XA";
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,
];
}