Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gomodifytags: init at 2017-12-14

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

+24
+22
pkgs/development/tools/gomodifytags/default.nix
··· 1 + { stdenv, lib, buildGoPackage, fetchgit }: 2 + 3 + buildGoPackage rec { 4 + name = "gomodifytags-${version}"; 5 + version = "unstable-2017-12-14"; 6 + rev = "20644152db4fe0ac406d81f3848e8a15f0cdeefa"; 7 + 8 + goPackagePath = "github.com/fatih/gomodifytags"; 9 + 10 + src = fetchgit { 11 + inherit rev; 12 + url = "https://github.com/fatih/gomodifytags"; 13 + sha256 = "0k0ly3mmm9zcaxwlzdbvdxr2gn7kvcqzk1bb7blgq7fkkzpp7i1q"; 14 + }; 15 + 16 + meta = { 17 + description = "Go tool to modify struct field tags."; 18 + homepage = https://github.com/fatih/gomodifytags; 19 + maintainers = with stdenv.lib.maintainers; [ vdemeester ]; 20 + license = stdenv.lib.licenses.bsd3; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 13239 13239 13240 13240 gotools = callPackage ../development/tools/gotools { }; 13241 13241 13242 + gomodifytags = callPackage ../development/tools/gomodifytags { }; 13243 + 13242 13244 gogoclient = callPackage ../os-specific/linux/gogoclient { }; 13243 13245 13244 13246 nss_ldap = callPackage ../os-specific/linux/nss_ldap { };