mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
gotest: init at 0.0.6
This commit is contained in:
parent
8c36f998e6
commit
fc25bc51f0
24
pkgs/development/tools/gotest/default.nix
Normal file
24
pkgs/development/tools/gotest/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gotest";
|
||||
version = "0.0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rakyll";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1v11ccrjghq7nsz0f91r17di14yixsw28vs0m3dwzwqkh1a20img";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-pVq6H1HoKqCMRfJg7FftRf3vh+BWZQe6cQAX+TBzKqw=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "go test with colors";
|
||||
homepage = "https://github.com/rakyll/gotest";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
@ -22112,6 +22112,8 @@ with pkgs;
|
||||
|
||||
go-tools = callPackage ../development/tools/go-tools { };
|
||||
|
||||
gotest = callPackage ../development/tools/gotest { };
|
||||
|
||||
gotools = callPackage ../development/tools/gotools { };
|
||||
|
||||
gotop = callPackage ../tools/system/gotop { };
|
||||
|
Loading…
Reference in New Issue
Block a user