gotests: init at 1.5.2
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "gotests-${version}";
|
||||
version = "1.5.2";
|
||||
rev = "v${version}";
|
||||
|
||||
goPackagePath = "github.com/cweill/gotests";
|
||||
excludedPackages = "testdata";
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "cweill";
|
||||
repo = "gotests";
|
||||
sha256 = "0ff2jvpc1xb5jr6dv9izlpfavxaivzirqmdmicpznrqjz0d56pri";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Generate Go tests from your source code.";
|
||||
homepage = https://github.com/cweill/gotests;
|
||||
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user