nixpkgs/pkgs/development/tools/jp/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

23 lines
582 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "jp";
version = "0.1.2";
rev = "${version}";
goPackagePath = "github.com/jmespath/jp";
src = fetchFromGitHub {
inherit rev;
owner = "jmespath";
repo = "jp";
sha256 = "1i0jl0c062crigkxqx8zpyqliz8j4d37y95cna33jl777kx42r6h";
};
meta = with stdenv.lib; {
description = "A command line interface to the JMESPath expression language for JSON";
homepage = https://github.com/jmespath/jp;
maintainers = with maintainers; [ cransom ];
license = licenses.asl20;
};
}