nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage {
4 name = "manul-unstable-2016-09-30";
5
6 goPackagePath = "github.com/kovetskiy/manul";
7 excludedPackages = "tests";
8
9 src = fetchFromGitHub {
10 owner = "kovetskiy";
11 repo = "manul";
12 rev = "7bddb5404b9ecc66fd28075bb899c2d6dc7a1c51";
13 sha256 = "06kglxdgj1dfpc9bdnvhsh8z0c1pdbmwmfx4km01wpppzk06dnvm";
14 };
15
16 goDeps = ./deps.nix;
17
18 meta = with stdenv.lib; {
19 description = "The madness vendoring utility for Golang programs";
20 homepage = https://github.com/kovetskiy/manul;
21 license = licenses.mit;
22 platforms = platforms.unix;
23 maintainers = [ maintainers.mic92 ];
24 };
25}