mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-08 23:03:07 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
32 lines
759 B
Nix
32 lines
759 B
Nix
{ lib, buildGoModule, fetchFromGitHub, jq, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jiq";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fiatjaf";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-txhttYngN+dofA3Yp3gZUZPRRZWGug9ysXq1Q0RP7ig=";
|
|
};
|
|
|
|
vendorHash = "sha256-ZUmOhPGy+24AuxdeRVF0Vnu8zDGFrHoUlYiDdfIV5lc=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
nativeCheckInputs = [ jq ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/jiq \
|
|
--prefix PATH : ${lib.makeBinPath [ jq ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/fiatjaf/jiq";
|
|
license = licenses.mit;
|
|
description = "jid on jq - interactive JSON query tool using jq expressions";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|