aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/impl/default.nix
blob: 327226fe7a1e75f4663166753c530217ace41d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ buildGoPackage
, lib
, fetchFromGitHub
}:

buildGoPackage rec {
  pname = "impl-unstable";
  version = "2019-11-19";
  rev = "6b9658ad00c7fbd61a7b50c195754413f6c4142c";

  goPackagePath = "github.com/josharian/impl";

  src = fetchFromGitHub {
    inherit rev;
    owner = "josharian";
    repo = "impl";
    sha256 = "1d4fvj7fgiykznx1z4fmcc06x5hsqp9wn62m5qm1ds8m0rjqaxwi";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "impl generates method stubs for implementing an interface";
    homepage = "https://github.com/josharian/impl";
    license = licenses.mit;
    maintainers = with maintainers; [ kalbasit ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}