159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
rustPlatform,
|
|
nushell,
|
|
IOKit,
|
|
CoreFoundation,
|
|
nix-update-script,
|
|
pkg-config,
|
|
openssl,
|
|
curl,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "nushell_plugin_query";
|
|
inherit (nushell) version src;
|
|
cargoHash = "sha256-ygzHnrQ3zO1+lxzRUFO1+0XocGBemJKoDa4oiCjCe+0=";
|
|
|
|
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ];
|
|
buildInputs =
|
|
[
|
|
openssl
|
|
curl
|
|
]
|
|
++ lib.optionals stdenv.isDarwin [
|
|
IOKit
|
|
CoreFoundation
|
|
];
|
|
cargoBuildFlags = [ "--package nu_plugin_query" ];
|
|
|
|
checkPhase = ''
|
|
cargo test --manifest-path crates/nu_plugin_query/Cargo.toml
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
# Skip the version check and only check the hash because we inherit version from nushell.
|
|
extraArgs = [ "--version=skip" ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Nushell plugin to query JSON, XML, and various web data";
|
|
mainProgram = "nu_plugin_query";
|
|
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_query";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
happysalada
|
|
aidalgol
|
|
];
|
|
platforms = with platforms; all;
|
|
};
|
|
}
|