gomodifytags: init at 2017-12-14

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-01-04 19:11:13 +01:00
parent 2cd8b7eb6d
commit 7f454c04ea
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "gomodifytags-${version}";
version = "unstable-2017-12-14";
rev = "20644152db4fe0ac406d81f3848e8a15f0cdeefa";
goPackagePath = "github.com/fatih/gomodifytags";
src = fetchgit {
inherit rev;
url = "https://github.com/fatih/gomodifytags";
sha256 = "0k0ly3mmm9zcaxwlzdbvdxr2gn7kvcqzk1bb7blgq7fkkzpp7i1q";
};
meta = {
description = "Go tool to modify struct field tags.";
homepage = https://github.com/fatih/gomodifytags;
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
license = stdenv.lib.licenses.bsd3;
};
}

View file

@ -13239,6 +13239,8 @@ with pkgs;
gotools = callPackage ../development/tools/gotools { };
gomodifytags = callPackage ../development/tools/gomodifytags { };
gogoclient = callPackage ../os-specific/linux/gogoclient { };
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };