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

30 lines
697 B
Nix
Raw Normal View History

2018-11-03 04:47:38 +00:00
{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "impl-unstable";
2020-04-23 09:39:26 +01:00
version = "2019-11-19";
rev = "6b9658ad00c7fbd61a7b50c195754413f6c4142c";
2018-11-03 04:47:38 +00:00
goPackagePath = "github.com/josharian/impl";
src = fetchFromGitHub {
inherit rev;
owner = "josharian";
repo = "impl";
2020-04-23 09:39:26 +01:00
sha256 = "1d4fvj7fgiykznx1z4fmcc06x5hsqp9wn62m5qm1ds8m0rjqaxwi";
2018-11-03 04:47:38 +00:00
};
goDeps = ./deps.nix;
meta = with lib; {
description = "impl generates 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;
};
}