Merge pull request #110809 from justinas/init-ijq

ijq: init at 0.2.3
This commit is contained in:
Sandro 2021-02-01 20:06:53 +01:00 committed by GitHub
commit ccda8c669f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ buildGoModule, fetchgit, lib, jq, makeWrapper }:
buildGoModule rec {
pname = "ijq";
version = "0.2.3";
src = fetchgit {
url = "https://git.sr.ht/~gpanders/ijq";
rev = "v${version}";
sha256 = "14n54jh5387jf97zhc7aidn7w60zp5624xbvq4jdbsh96apg3bk1";
};
vendorSha256 = "0xbni6lk6y3ig7pj2234fv7ra6b8qv0k8m3bvh59wwans8xpihzb";
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/ijq" \
--prefix PATH : "${lib.makeBinPath [ jq ]}"
'';
meta = with lib; {
description = "Interactive wrapper for jq";
homepage = "https://git.sr.ht/~gpanders/ijq";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ justinas ];
};
}

View file

@ -5207,6 +5207,8 @@ in
packages = config.ihaskell.packages or (self: []);
};
ijq = callPackage ../development/tools/ijq { };
iruby = callPackage ../applications/editors/jupyter-kernels/iruby { };
ike-scan = callPackage ../tools/security/ike-scan { };