mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
nushellPlugins.query: 0.80.0 -> 0.81.0
This commit is contained in:
parent
06375c5962
commit
3596490914
|
@ -4,15 +4,16 @@
|
|||
, nushell
|
||||
, IOKit
|
||||
, CoreFoundation
|
||||
, nix-update-script
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "nushell_plugin_query";
|
||||
version = "0.80.0";
|
||||
version = "0.81.0";
|
||||
|
||||
src = nushell.src;
|
||||
|
||||
cargoHash = "sha256-k4UjHNf5L9RmYuB66gcoyCmhd1MvtAxTOxRh24sv0sk=";
|
||||
cargoHash = "sha256-iQ7xr7NY/OQ5pVq2DFmdl/6F2NlUh3NBA9dk+e4gzRE=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ IOKit CoreFoundation ];
|
||||
|
||||
|
@ -21,6 +22,10 @@ rustPlatform.buildRustPackage {
|
|||
# compilation fails with a missing symbol
|
||||
doCheck = false;
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Nushell plugin to query JSON, XML, and various web data";
|
||||
homepage = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query";
|
||||
|
|
Loading…
Reference in a new issue