13c5657700
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
23 lines
584 B
Nix
23 lines
584 B
Nix
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ginkgo";
|
|
version = "1.14.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "onsi";
|
|
repo = "ginkgo";
|
|
rev = "v${version}";
|
|
sha256 = "1pvslbfrpzc8n99x33gyvk9aaz6lvdyyg6cj3axjzkyjxmh6d5kc";
|
|
};
|
|
vendorSha256 = "072amyw1ir18v9vk268j2y7dhw3lfwvxzvzsdqhnp50rxsa911bx";
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "BDD Testing Framework for Go";
|
|
homepage = "https://github.com/onsi/ginkgo";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ saschagrunert ];
|
|
};
|
|
}
|