33 lines
908 B
Nix
33 lines
908 B
Nix
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||
|
|
||
|
buildGoPackage rec {
|
||
|
name = "gron-${version}";
|
||
|
version = "0.5.1";
|
||
|
|
||
|
owner = "tomnomnom";
|
||
|
repo = "gron";
|
||
|
goPackagePath = "github.com/${owner}/${repo}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
inherit owner repo;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1s688ynjddchviwbiggnfbw28s4wsff2941f4b1q1j7mfak7iym2";
|
||
|
};
|
||
|
|
||
|
goDeps = ./deps.nix;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Make JSON greppable!";
|
||
|
longDescription = ''
|
||
|
gron transforms JSON into discrete assignments to make it easier to grep
|
||
|
for what you want and see the absolute 'path' to it. It eases the
|
||
|
exploration of APIs that return large blobs of JSON but have terrible
|
||
|
documentation.
|
||
|
'';
|
||
|
homepage = "https://github.com/tomnomnom/gron";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ maintainers.fgaz ];
|
||
|
platforms = with platforms; linux ++ darwin;
|
||
|
};
|
||
|
}
|