mtail: init at 3.0.0-rc4
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{ lib, fetchFromGitHub, gotools, buildGoPackage }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "mtail-${version}";
|
||||
version = "3.0.0-rc4";
|
||||
goPackagePath = "github.com/google/mtail";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "mtail";
|
||||
rev = "v${version}";
|
||||
sha256 = "1n7pqvid48ayn15qfpgpbsx0iqg24x08wphzpc08mlfw47gq7jg3";
|
||||
};
|
||||
|
||||
buildInputs = [ gotools ];
|
||||
goDeps = ./deps.nix;
|
||||
patches = [ ./fix-gopath.patch ];
|
||||
preBuild = "go generate -x ./go/src/github.com/google/mtail/vm/";
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
license = licenses.asl20;
|
||||
homepage = "https://github.com/google/mtail";
|
||||
description = "Tool for extracting metrics from application logs";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user