nixpkgs/pkgs/development/tools/oq/default.nix
Artturin c609c50a78 oq: fix strictDeps build
buildCrystalPackage now has strictDeps enabled

kakoune-cr: add bash to buildInputs for patchShebangs

scry: add bash to buildInputs for patchShebang
2022-05-10 05:20:35 +03:00

39 lines
784 B
Nix

{ lib
, fetchFromGitHub
, crystal
, jq
, libxml2
, makeWrapper
}:
crystal.buildCrystalPackage rec {
pname = "oq";
version = "1.3.2";
src = fetchFromGitHub {
owner = "Blacksmoke16";
repo = pname;
rev = "v${version}";
sha256 = "sha256-iGKyP3NrAnR3ISOBq+YR/vwarlnIY4u4ZwdqSBnBC7U=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ libxml2 ];
checkInputs = [ jq ];
format = "shards";
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; [ Br1ght0ne ];
platforms = platforms.unix;
};
}