summary refs log tree commit diff
path: root/pkgs/development/tools/gopkgs/default.nix
blob: ea9c92c0d0a1258ddaf61f9fb094b85f7b52fc99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "gopkgs-${version}";
  version = "unstable-2017-12-29";
  rev = "b2ea2ecd37740e6ce0e020317d90c729aab4dc6d";

  goPackagePath = "github.com/uudashr/gopkgs";
  goDeps = ./deps.nix;

  src = fetchFromGitHub {
    inherit rev;
    owner = "uudashr";
    repo = "gopkgs";
    sha256 = "1hwzxrf2h8xjbbx6l86mjpjh4csxxsy17zkh8h3qzncyfnsnczzg";
  };

  meta = {
    description = "Tool to get list available Go packages.";
    homepage = https://github.com/uudashr/gopkgs;
    maintainers = with stdenv.lib.maintainers; [ vdemeester ];
    license = stdenv.lib.licenses.mit;
  };
}