about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAidan Gauland <aidalgol@fastmail.net>2023-09-12 08:52:59 +1200
committerYt <happysalada@tuta.io>2023-10-05 21:32:21 +0000
commitf66847bb3758408908ba87a1d8763baed61a623f (patch)
treef3311cecdf0699e31fae495809c0448c1eb47f33 /pkgs/shells
parent8024ef9b1cdc7d58f5f5939d14a758989f682164 (diff)
nushellPlugins: correct homepage URL
URL was pointing to main branch, rather than the tag corresponding to
the package verion.
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/nushell/plugins/formats.nix2
-rw-r--r--pkgs/shells/nushell/plugins/gstat.nix2
-rw-r--r--pkgs/shells/nushell/plugins/query.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/nushell/plugins/formats.nix b/pkgs/shells/nushell/plugins/formats.nix
index 710ecf92bf080..974121f88e2ea 100644
--- a/pkgs/shells/nushell/plugins/formats.nix
+++ b/pkgs/shells/nushell/plugins/formats.nix
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage {
   '';
   meta = with lib; {
     description = "A formats plugin for Nushell";
-    homepage = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_formats";
+    homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_formats";
     license = licenses.mpl20;
     maintainers = with maintainers; [ viraptor ];
     platforms = with platforms; all;
diff --git a/pkgs/shells/nushell/plugins/gstat.nix b/pkgs/shells/nushell/plugins/gstat.nix
index ba974ad2443ce..d78642b41554b 100644
--- a/pkgs/shells/nushell/plugins/gstat.nix
+++ b/pkgs/shells/nushell/plugins/gstat.nix
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage {
   '';
   meta = with lib; {
     description = "A git status plugin for Nushell";
-    homepage = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat";
+    homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat";
     license = licenses.mpl20;
     maintainers = with maintainers; [ mrkkrp ];
     platforms = with platforms; all;
diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix
index d13170d275ad7..cc7106ae1c897 100644
--- a/pkgs/shells/nushell/plugins/query.nix
+++ b/pkgs/shells/nushell/plugins/query.nix
@@ -29,7 +29,7 @@ rustPlatform.buildRustPackage {
 
   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";
+    homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_query";
     license = licenses.mpl20;
     maintainers = with maintainers; [ happysalada ];
     platforms = with platforms; all;