goawk 1.23.3 -> 1.24.0 https://github.com/benhoyt/goawk/releases attrpath: goawk Checking auto update branch... No auto update branch exists Old version 1.23.3" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, lib, stdenv, gawk }: buildGoModule rec { pname = "goawk"; version = "1.24.0"; src = fetchFromGitHub { owner = "benhoyt"; repo = "goawk"; rev = "v${version}"; hash = "sha256-pce7g0MI23244t5ZK4UDOfQNt1m3tRpCahne0s+NRRE="; }; vendorHash = null; nativeCheckInputs = [ 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 ]; }; }