goawk: init at 1.15.0

This commit is contained in:
Ashish SHUKLA 2022-02-05 16:45:18 +05:30
parent 554d2d8aa2
commit 76e775574a
No known key found for this signature in database
GPG key ID: C746CFA9E74FA4B0
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "goawk";
version = "1.15.0";
src = fetchFromGitHub {
owner = "benhoyt";
repo = "goawk";
rev = "v${version}";
sha256 = "sha256-gd26j6c8ORy0qkeHvwPFLkymeRiFr8MLxJ6hIrBwAZw=";
};
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
# checks do not pass at the moment
doCheck = false;
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 ];
};
}

View file

@ -3219,6 +3219,8 @@ with pkgs;
goa = callPackage ../development/tools/goa { };
goawk = callPackage ../tools/text/goawk { };
gohai = callPackage ../tools/system/gohai { };
gorilla-bin = callPackage ../tools/security/gorilla-bin { };