Skip to content

Commit

Permalink
nushellPlugins.query: fix homepage (#347295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Oct 21, 2024
2 parents 5ea573c + ca07e93 commit dc72191
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/shells/nushell/plugins/query.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
curl,
}:

rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "nushell_plugin_query";
inherit (nushell) version src;
cargoHash = "sha256-M55nMYsTlmJZWXaNPZJ3M7w34cxpZx49Ap+u1Pr/Htw=";
Expand All @@ -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;
};
}

0 comments on commit dc72191

Please sign in to comment.