Skip to content

Commit

Permalink
mockgen: init at 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bouk authored and zowoq committed Jul 26, 2020
1 parent 3889822 commit 352eeb0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/tools/mockgen/default.nix
@@ -0,0 +1,20 @@
{ buildGoModule, lib, fetchFromGitHub }:
buildGoModule rec {
pname = "mockgen";
version = "1.4.3";
src = fetchFromGitHub {
owner = "golang";
repo = "mock";
rev = "v${version}";
sha256 = "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx";
};
vendorSha256 = "1kpiij3pimwv3gn28rbrdvlw9q5c76lzw6zpa12q6pgck76acdw4";
subPackages = [ "mockgen" ];

meta = with lib; {
description = "GoMock is a mocking framework for the Go programming language.";
homepage = "https://github.com/golang/mock";
license = licenses.asl20;
maintainers = with maintainers; [ bouk ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -10901,6 +10901,8 @@ in

mkdocs = callPackage ../development/tools/documentation/mkdocs { };

mockgen = callPackage ../development/tools/mockgen { };

modd = callPackage ../development/tools/modd { };

msgpack-tools = callPackage ../development/tools/msgpack-tools { };
Expand Down

0 comments on commit 352eeb0

Please sign in to comment.