aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/package-management/gx/go/default.nix
blob: 652edf95e550ccaefd3b48ce4db31775b362a59e (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
30
31
32
33
34
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchgit
, gx
}:

buildGoPackage rec {
  pname = "gx-go";
  version = "1.9.0";
  rev = "refs/tags/v${version}";

  goPackagePath = "github.com/whyrusleeping/gx-go";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/whyrusleeping/gx-go";
    sha256 = "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc";
  };

  goDeps = ./deps.nix;

  extraSrcs = [
    {
      goPackagePath = gx.goPackagePath;
      src = gx.src;
    }
  ];

  meta = with stdenv.lib; {
    description = "A tool for importing go packages into gx";
    homepage = "https://github.com/whyrusleeping/gx-go";
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
  };
}