lol
at 23.05-pre 29 lines 869 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "gron"; 5 version = "0.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "tomnomnom"; 9 repo = "gron"; 10 rev = "v${version}"; 11 sha256 = "sha256-ZkAfAQsaFX7npyDcBDFS4Xa8kOMVH6yGfxGD7c0iQ+o="; 12 }; 13 14 vendorSha256 = "sha256-K/QAG9mCIHe7PQhex3TntlGYAK9l0bESWk616N97dBs="; 15 16 meta = with lib; { 17 description = "Make JSON greppable!"; 18 longDescription = '' 19 gron transforms JSON into discrete assignments to make it easier to grep 20 for what you want and see the absolute 'path' to it. It eases the 21 exploration of APIs that return large blobs of JSON but have terrible 22 documentation. 23 ''; 24 homepage = "https://github.com/tomnomnom/gron"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ fgaz SuperSandro2000 ]; 27 platforms = platforms.unix; 28 }; 29}