1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #33429 from vdemeester/init-gomodifytags

gomodifytags: init at 2017-12-14
This commit is contained in:
lewo 2018-02-13 19:10:28 +01:00 committed by GitHub
commit 596a03e002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -13385,6 +13385,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 { };