23 lines
549 B
Nix
23 lines
549 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "go-mockery";
|
||
|
version = "2.5.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "vektra";
|
||
|
repo = "mockery";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "5W5WGWqxpZzOqk1VOlLeggIqfneRb7s7ZT5faNEhDos=";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = "//V3ia3YP1hPgC1ipScURZ5uXU4A2keoG6dGuwaPBcA=";
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/vektra/mockery";
|
||
|
description = "A mock code autogenerator for Golang";
|
||
|
maintainers = with maintainers; [ fbrs ];
|
||
|
license = licenses.bsd3;
|
||
|
};
|
||
|
}
|