2022-11-28T11:35:49 goawk 1.20.0 -> 1.21.0 https://repology.org/metapackage/goawk/versions 2022-11-28T11:35:52 attrpath: goawk 2022-11-28T11:35:52 Checking auto update branch... 2022-11-28T11:35:52 No auto update branch exists 2022-11-28T11:35:52 Old version 1.20.0" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, lib, stdenv, gawk }: buildGoModule rec { pname = "goawk"; version = "1.21.0"; src = fetchFromGitHub { owner = "benhoyt"; repo = "goawk"; rev = "v${version}"; sha256 = "sha256-I6KmNPFD8kkYDyek8lR1ZS7biPA/LYGwJqMoA2fG7Wg="; }; vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; checkInputs = [ gawk ]; postPatch = '' substituteInPlace goawk_test.go \ --replace "TestCommandLine" "SkipCommandLine" \ --replace "TestDevStdout" "SkipDevStdout" \ --replace "TestFILENAME" "SkipFILENAME" \ --replace "TestWildcards" "SkipWildcards" substituteInPlace interp/interp_test.go \ --replace "TestShellCommand" "SkipShellCommand" ''; checkFlags = [ "-awk" "${gawk}/bin/gawk" ]; doCheck = (stdenv.system != "aarch64-darwin"); meta = with lib; { description = "A POSIX-compliant AWK interpreter written in Go"; homepage = "https://benhoyt.com/writings/goawk/"; license = licenses.mit; mainProgram = "goawk"; maintainers = with maintainers; [ abbe ]; }; }