My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/manul/default.nix

27 lines
694 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage {
pname = "manul";
version = "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 ];
};
}