biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gojq / default.nix
blob8d8ad98481bac919d9e44d33298d39a891ad755c
1 { lib, buildGoModule, fetchFromGitHub, testers, gojq }:
3 buildGoModule rec {
4   pname = "gojq";
5   version = "0.12.15";
7   src = fetchFromGitHub {
8     owner = "itchyny";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-2Og1Ek8Hnzd4KTgJurWtPaqm0W6ruoJ1RN2G+l/5yIY=";
12   };
14   vendorHash = "sha256-tZB52w15MpAO3UnrDkhmL1M3EIcm/QwrPy9gvJycuD0=";
16   ldflags = [ "-s" "-w" ];
18   passthru.tests.version = testers.testVersion {
19     package = gojq;
20   };
22   meta = with lib; {
23     description = "Pure Go implementation of jq";
24     homepage = "https://github.com/itchyny/gojq";
25     changelog = "https://github.com/itchyny/gojq/blob/v${version}/CHANGELOG.md";
26     license = licenses.mit;
27     maintainers = with maintainers; [ aaronjheng ];
28     mainProgram = "gojq";
29   };