3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/oq/default.nix

38 lines
763 B
Nix
Raw Normal View History

2021-03-30 08:25:26 +01:00
{ lib
, fetchFromGitHub
, crystal
, jq
, libxml2
, makeWrapper
}:
2019-12-05 10:56:33 +00:00
crystal.buildCrystalPackage rec {
pname = "oq";
2021-08-22 10:52:50 +01:00
version = "1.3.0";
2019-12-05 10:56:33 +00:00
src = fetchFromGitHub {
owner = "Blacksmoke16";
repo = pname;
rev = "v${version}";
2021-08-22 10:52:50 +01:00
sha256 = "sha256-oLy8Ts+wnI0LxtAH6vVqhS7nqNkaLs0/vK9GxfG4vU8=";
2019-12-05 10:56:33 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jq libxml2 ];
2021-03-30 08:25:26 +01:00
format = "shards";
2020-05-10 15:54:34 +01:00
2019-12-05 10:56:33 +00:00
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;
2019-12-05 10:56:33 +00:00
};
}