Skip to content

Commit

Permalink
Merge pull request #320878 from obreitwi/ojb/tparse/init
Browse files Browse the repository at this point in the history
tparse: init at 0.13.3
  • Loading branch information
thiagokokada authored Jun 18, 2024
2 parents 3bcf50f + 14925a6 commit 1c0bef5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/tp/tparse/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
pname = "tparse";
version = "0.13.3";
in
buildGoModule {
inherit pname version;

src = fetchFromGitHub {
owner = "mfridman";
repo = pname;
rev = "v${version}";
hash = "sha256-MTaxEWRNAXem/DIirrd53YEHA/A5S4wNX4osuMV3gtc=";
};

vendorHash = "sha256-j+1B2zWONjFEGoyesX0EW964kD33Jy3O1aB1WEwlESA=";

meta = {
description = "CLI tool for summarizing go test output. Pipe friendly. CI/CD friendly";
mainProgram = "tparse";
homepage = "https://github.com/mfridman/tparse";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ obreitwi ];
};
}

0 comments on commit 1c0bef5

Please sign in to comment.