manul: init at 2016-09-30

This commit is contained in:
Jörg Thalheim
2017-01-14 01:04:53 +01:00
parent b8b7832219
commit 4f130dd219
3 changed files with 102 additions and 0 deletions
+25
View File
@@ -0,0 +1,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 ];
};
}