gomodifytags: init at 2017-12-14
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
2cd8b7eb6d
commit
7f454c04ea
22
pkgs/development/tools/gomodifytags/default.nix
Normal file
22
pkgs/development/tools/gomodifytags/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -13239,6 +13239,8 @@ with pkgs;
|
|||||||
|
|
||||||
gotools = callPackage ../development/tools/gotools { };
|
gotools = callPackage ../development/tools/gotools { };
|
||||||
|
|
||||||
|
gomodifytags = callPackage ../development/tools/gomodifytags { };
|
||||||
|
|
||||||
gogoclient = callPackage ../os-specific/linux/gogoclient { };
|
gogoclient = callPackage ../os-specific/linux/gogoclient { };
|
||||||
|
|
||||||
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };
|
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user