2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-07-20 14:24:46 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "jp";
|
2020-06-14 11:12:39 -07:00
|
|
|
version = "0.1.3";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2016-07-20 14:24:46 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/jmespath/jp";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "jmespath";
|
|
|
|
repo = "jp";
|
2020-06-14 11:12:39 -07:00
|
|
|
sha256 = "0fdbnihbd0kq56am3bmh2zrfk4fqjslcbm48malbgmpqw3a5nvpi";
|
2016-07-20 14:24:46 -07:00
|
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A command line interface to the JMESPath expression language for JSON";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/jmespath/jp";
|
2016-07-20 14:24:46 -07:00
|
|
|
maintainers = with maintainers; [ cransom ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|