Test / Create distribution (push) Successful in 58s
Test / Sandbox (push) Successful in 2m54s
Test / ShareFS (push) Successful in 3m59s
Test / Hakurei (push) Successful in 4m7s
Test / Sandbox (race detector) (push) Successful in 5m31s
Test / Hakurei (race detector) (push) Successful in 6m42s
Test / Flake checks (push) Successful in 1m21s
Reintroduce this to build strace without xz-compressed release tarball: bootstrap script explicitly requires gawk. Signed-off-by: Ophestra <cat@gensokyo.uk>
24 lines
486 B
Go
24 lines
486 B
Go
package gawk {
|
|
description = "an implementation of awk with GNU extensions";
|
|
website = "https://www.gnu.org/software/gawk";
|
|
anitya = 868;
|
|
|
|
version# = "5.4.0";
|
|
source = remoteTar {
|
|
url = "https://ftpmirror.gnu.org/gnu/gawk/gawk-"+version+".tar.gz";
|
|
checksum = "m0RkIolC-PI7EY5q8pcx5Y-0twlIW0Yp3wXXmV-QaHorSdf8BhZ7kW9F8iWomz0C";
|
|
compress = gzip;
|
|
};
|
|
patches = [
|
|
"musl-errno.patch",
|
|
"broken-tests.patch",
|
|
];
|
|
|
|
exec = make {};
|
|
|
|
inputs = [
|
|
diffutils,
|
|
util-linux,
|
|
];
|
|
}
|