nixpkgs/pkgs/development/tools/impl/default.nix

27 lines
691 B
Nix
Raw Normal View History

2020-12-29 09:49:19 +00:00
{ buildGoModule, lib, fetchFromGitHub }:
2018-11-03 04:47:38 +00:00
2020-12-29 09:49:19 +00:00
buildGoModule rec {
pname = "impl";
version = "1.0.0";
2018-11-03 04:47:38 +00:00
src = fetchFromGitHub {
owner = "josharian";
repo = "impl";
2020-12-29 09:49:19 +00:00
rev = "v${version}";
sha256 = "0l21fkcgiaaf6ka91dmz8hx0l3nbp0kqi8p25kij1s5zb796z0dy";
2018-11-03 04:47:38 +00:00
};
2020-12-29 09:49:19 +00:00
vendorSha256 = "0xkalwy02w62px01jdwwr3vwwsh50f22dsxf8lrrwmw6k0rq57zv";
# go: cannot find GOROOT directory: go
doCheck = false;
2018-11-03 04:47:38 +00:00
meta = with lib; {
description = "Generate method stubs for implementing an interface";
homepage = "https://github.com/josharian/impl";
2018-11-03 04:47:38 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}