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

buildGoPackage rec {
  name = "manul-unstable-2016-09-30";

  goPackagePath = "github.com/kovetskiy/manul";
  excludedPackages = "tests";

  src = fetchFromGitHub {
    owner = "kovetskiy";
    repo = "manul";
    rev = "7bddb5404b9ecc66fd28075bb899c2d6dc7a1c51";
    sha256 = "06kglxdgj1dfpc9bdnvhsh8z0c1pdbmwmfx4km01wpppzk06dnvm";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "The madness vendoring utility for Golang programs";
    homepage = https://github.com/kovetskiy/manul;
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = [ maintainers.mic92 ];
  };
}