about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/gopkgs/default.nix
blob: 778ed562637edba388619306aabc3649ec57a825 (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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "gopkgs";
  version = "2.0.1";

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

  src = fetchFromGitHub {
    rev = "v${version}";
    owner = "uudashr";
    repo = "gopkgs";
    sha256 = "03zfwkmzwx2knkghky3irb2r78lbc1ccszjcg9y445b4pbqkn6w4";
  };

  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;
  };
}