Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / ijq / default.nix
blob5334a2042600b38ef117a6c663ef1f42a372e9cb
1 { buildGoModule, fetchFromSourcehut, lib, jq, installShellFiles, makeWrapper, scdoc }:
3 buildGoModule rec {
4   pname = "ijq";
5   version = "0.4.1";
7   src = fetchFromSourcehut {
8     owner = "~gpanders";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-WTA14W8JFHdouDgWmsc4wMygnwlANPjSYCAhxFVrwAA=";
12   };
14   vendorHash = "sha256-DX8m5FsqMZnzk1wgJA/ESZl0QeDv3p9huF4h1HY9DIA=";
16   nativeBuildInputs = [ installShellFiles makeWrapper scdoc ];
18   ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
20   postBuild = ''
21     scdoc < ijq.1.scd > ijq.1
22     installManPage ijq.1
23   '';
25   postInstall = ''
26     wrapProgram "$out/bin/ijq" \
27       --prefix PATH : "${lib.makeBinPath [ jq ]}"
28   '';
30   meta = with lib; {
31     description = "Interactive wrapper for jq";
32     homepage = "https://git.sr.ht/~gpanders/ijq";
33     license = licenses.gpl3Plus;
34     maintainers = with maintainers; [ justinas SuperSandro2000 ];
35   };