Merge pull request #164259 from nagy/jp-021
This commit is contained in:
commit
e7352f19bb
1 changed files with 8 additions and 8 deletions
|
@ -1,18 +1,18 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "jp";
|
pname = "jp";
|
||||||
version = "0.1.3";
|
version = "0.2.1";
|
||||||
rev = version;
|
|
||||||
|
|
||||||
goPackagePath = "github.com/jmespath/jp";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
rev = version;
|
||||||
owner = "jmespath";
|
owner = "jmespath";
|
||||||
repo = "jp";
|
repo = "jp";
|
||||||
sha256 = "0fdbnihbd0kq56am3bmh2zrfk4fqjslcbm48malbgmpqw3a5nvpi";
|
hash = "sha256-a3WvLAdUZk+Y+L+opPDMBvdN5x5B6nAi/lL8JHJG/gY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-K6ZNtART7tcVBH5myV6vKrKWfnwK8yTa6/KK4QLyr00=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A command line interface to the JMESPath expression language for JSON";
|
description = "A command line interface to the JMESPath expression language for JSON";
|
||||||
homepage = "https://github.com/jmespath/jp";
|
homepage = "https://github.com/jmespath/jp";
|
||||||
|
|
Loading…
Reference in a new issue