mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
gotestdox: init at 0.2.2
This commit is contained in:
parent
2aa5b5d837
commit
d5083f0888
35
pkgs/by-name/go/gotestdox/package.nix
Normal file
35
pkgs/by-name/go/gotestdox/package.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gotestdox";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bitfield";
|
||||
repo = "gotestdox";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-AZDXMwADOjcaMiofMWoHp+eSnD3a8iFtwpWDKl9Ess8=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-kDSZ4RZTHDFmu7ernYRjg0PV7eBB2lH8q5wW3kTExDs=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Tool for formatting Go test results as readable documentation";
|
||||
homepage = "https://github.com/bitfield/gotestdox";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ eljamm ];
|
||||
mainProgram = "gotestdox";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user