Files
nixpkgs/pkgs/shells/nushell/plugins/query.nix
T
Aidan Gauland fa845cc3b6 nushellPlugins: fix update script
Because of inheriting the version attribute from nushell, we need to
tell the updater script to ignore the version and check the hash anyway.
2023-10-05 21:32:21 +00:00

35 lines
986 B
Nix

{ stdenv
, lib
, rustPlatform
, nushell
, IOKit
, CoreFoundation
, nix-update-script
}:
rustPlatform.buildRustPackage {
pname = "nushell_plugin_query";
inherit (nushell) version src;
cargoHash = "sha256-xyty3GfI+zNkuHs7LYHBctqXUHZ4/MNNcnnfYvI18do=";
buildInputs = 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 = "A Nushell plugin to query JSON, XML, and various web data";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_query";
license = licenses.mpl20;
maintainers = with maintainers; [ happysalada aidalgol ];
platforms = with platforms; all;
};
}