go-toml: init at 1.8.0

This commit is contained in:
Mario Rodas 2020-06-06 04:20:00 -05:00
parent 243cfc5769
commit 6a38067fcf
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "go-toml";
version = "1.8.0";
src = fetchFromGitHub {
owner = "pelletier";
repo = pname;
rev = "v${version}";
sha256 = "0fxmjm85c9h43lvqz71wr93fcc63bhj82nwby80222xx8ja63g7y";
};
goPackagePath = "github.com/pelletier/go-toml";
excludedPackages = [ "cmd/tomltestgen" ];
meta = with lib; {
description = "Go library for the TOML language";
homepage = "https://github.com/pelletier/go-toml";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}

View file

@ -17353,6 +17353,8 @@ in
go-symbols = callPackage ../development/tools/go-symbols { };
go-toml = callPackage ../development/tools/go-toml { };
go-outline = callPackage ../development/tools/go-outline { };
gocode = callPackage ../development/tools/gocode { };