nixpkgs/pkgs/development/tools/jp/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

23 lines
607 B
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub, jmespath }:
buildGoPackage rec {
name = "jp-${version}";
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;
};
}