nixpkgs/pkgs/tools/text/goawk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1018 B
Nix
Raw Normal View History

2022-04-05 21:09:08 +00:00
{ buildGoModule, fetchFromGitHub, lib, stdenv }:
2022-02-05 11:15:18 +00:00
buildGoModule rec {
pname = "goawk";
2022-02-19 06:50:19 +00:00
version = "1.16.0";
2022-02-05 11:15:18 +00:00
src = fetchFromGitHub {
owner = "benhoyt";
repo = "goawk";
rev = "v${version}";
2022-02-19 06:50:19 +00:00
sha256 = "sha256-ALzCcSZHnzidj4tQzZWXT8WDPIE147KWbn7n1JHCTRE=";
2022-02-05 11:15:18 +00:00
};
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
2022-04-05 21:09:08 +00:00
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"
'';
doCheck = (stdenv.system != "aarch64-darwin");
2022-02-05 11:15:18 +00:00
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 ];
};
}