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

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

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

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

  deleteVendor = true;
  goDeps = ./deps.nix;

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