nixpkgs/pkgs/development/tools/jmespath/default.nix
Casey Ransom d5ee0a27d0 jp: init at 0.1.2
A json parson tool based on the JMESPATH query language.
http://jmespath.org/
2016-07-21 10:42:54 -04:00

23 lines
594 B
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "jmespath-${version}";
version = "0.2.2";
rev = "${version}";
goPackagePath = "github.com/jmespath/go-jmespath";
src = fetchFromGitHub {
inherit rev;
owner = "jmespath";
repo = "go-jmespath";
sha256 = "0f4j0m44limnjd6q5fk152g6jq2a5cshcdms4p3a1br8pl9wp5fb";
};
meta = with stdenv.lib; {
description = "A JMESPath implementation in Go";
homepage = "https://github.com/jmespath/go-jmespath";
maintainers = with maintainers; [ cransom ];
license = licenses.asl20;
};
}