My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/gotest/default.nix

24 lines
575 B

{ 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 ];
};
}