Merge pull request #75042 from filalex77/oq-0.2.1

oq: init at 1.0.2
This commit is contained in:
Elis Hirwing 2020-05-10 10:45:38 +02:00 committed by GitHub
commit 192c150a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, fetchFromGitHub, crystal, jq, libxml2, makeWrapper }:
crystal.buildCrystalPackage rec {
pname = "oq";
version = "1.0.2";
src = fetchFromGitHub {
owner = "Blacksmoke16";
repo = pname;
rev = "v${version}";
sha256 = "0sf6rb5b6g7gzyq11l5868p3a1s5z8432swlpv457bfbbnbg6j6q";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jq libxml2 ];
crystalBinaries.oq.src = "src/oq_cli.cr";
postInstall = ''
wrapProgram "$out/bin/oq" \
--prefix PATH : "${lib.makeBinPath [ jq ]}"
'';
meta = with lib; {
description = "A performant, and portable jq wrapper";
homepage = "https://blacksmoke16.github.io/oq/";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
platforms = platforms.linux;
};
}

View File

@ -5679,6 +5679,8 @@ in
stdenv = clangStdenv;
};
oq = callPackage ../development/tools/oq { };
out-of-tree = callPackage ../development/tools/out-of-tree { };
oppai-ng = callPackage ../tools/misc/oppai-ng { };