mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
32 lines
761 B
Nix
32 lines
761 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=";
|
|
};
|
|
|
|
vendorSha256 = "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; [ ];
|
|
};
|
|
}
|