lol

jmespath: 0.2.2 -> 0.4.0

+14 -8
+14 -8
pkgs/development/tools/jmespath/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 3 - buildGoPackage rec { 4 pname = "jmespath"; 5 - version = "0.2.2"; 6 - rev = version; 7 - 8 - goPackagePath = "github.com/jmespath/go-jmespath"; 9 10 src = fetchFromGitHub { 11 - inherit rev; 12 owner = "jmespath"; 13 repo = "go-jmespath"; 14 - sha256 = "0f4j0m44limnjd6q5fk152g6jq2a5cshcdms4p3a1br8pl9wp5fb"; 15 }; 16 meta = with lib; { 17 description = "A JMESPath implementation in Go"; 18 homepage = "https://github.com/jmespath/go-jmespath";
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 3 + buildGoModule rec { 4 pname = "jmespath"; 5 + version = "0.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "jmespath"; 9 repo = "go-jmespath"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-djA/7TCmAqCsht28b1itoiWd8Mtdsn/5uLxyT23K/qM="; 12 }; 13 + 14 + vendorSha256 = "sha256-Q12muprcKB7fCxemESb4sGPyYIdmgOt3YXVUln7oabw="; 15 + 16 + excludedPackages = [ 17 + "./internal/testify" 18 + ]; 19 + 20 + ldflags = [ "-s" "-w" ]; 21 + 22 meta = with lib; { 23 description = "A JMESPath implementation in Go"; 24 homepage = "https://github.com/jmespath/go-jmespath";