From ca07e930b67652eb03efb9f0c8fdbf9f1d36efcb Mon Sep 17 00:00:00 2001 From: Honnip Date: Tue, 8 Oct 2024 23:17:17 +0900 Subject: [PATCH] nushellPlugins.query: fix homepage --- pkgs/shells/nushell/plugins/query.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix index 55bd221c8b548..ba8a0c449e122 100644 --- a/pkgs/shells/nushell/plugins/query.nix +++ b/pkgs/shells/nushell/plugins/query.nix @@ -11,7 +11,7 @@ curl, }: -rustPlatform.buildRustPackage { +rustPlatform.buildRustPackage rec { pname = "nushell_plugin_query"; inherit (nushell) version src; cargoHash = "sha256-7E4CCs4xyNGwjk6B2CwIFf1x0o5uNQArZpyxXEKLXMI="; @@ -37,15 +37,15 @@ rustPlatform.buildRustPackage { extraArgs = [ "--version=skip" ]; }; - meta = with lib; { + meta = { 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; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada aidalgol ]; - platforms = with platforms; all; + platforms = lib.platforms.all; }; }