about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-07 02:51:56 +0200
committerGitHub <noreply@github.com>2023-09-07 02:51:56 +0200
commita17bb78eb3dbd787edb62183e10d420a67f203ed (patch)
tree5cac4673444daf1be173a2a40c9450c3d392d618 /pkgs/shells/fish/plugins
parent233fba079ac84839ac041a1c09a2375387abefc2 (diff)
parentdbed814062cc051172fd4d68fe014e8e16b95a26 (diff)
Merge pull request #241994 from ocfox/tide-5.6.0
fishPlugins.tide: 5.5.1 -> 5.6.0
Diffstat (limited to 'pkgs/shells/fish/plugins')
-rw-r--r--pkgs/shells/fish/plugins/tide.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/fish/plugins/tide.nix b/pkgs/shells/fish/plugins/tide.nix
index 5c844212006ad..94cbfaa6b8f9f 100644
--- a/pkgs/shells/fish/plugins/tide.nix
+++ b/pkgs/shells/fish/plugins/tide.nix
@@ -4,13 +4,13 @@
 # Refer to the following comment to get you setup: https://github.com/NixOS/nixpkgs/pull/201646#issuecomment-1320893716
 buildFishPlugin rec {
   pname = "tide";
-  version = "5.5.1";
+  version = "5.6.0";
 
   src = fetchFromGitHub {
     owner = "IlanCosman";
     repo = "tide";
     rev = "v${version}";
-    sha256 = "sha256-vi4sYoI366FkIonXDlf/eE2Pyjq7E/kOKBrQS+LtE+M=";
+    hash = "sha256-cCI1FDpvajt1vVPUd/WvsjX/6BJm6X1yFPjqohmo1rI=";
   };
 
   #buildFishplugin will only move the .fish files, but tide has a tide configure function
@@ -19,7 +19,7 @@ buildFishPlugin rec {
   '';
 
   meta = with lib; {
-    description = "The ultimate Fish prompt.";
+    description = "The ultimate Fish prompt";
     homepage = "https://github.com/IlanCosman/tide";
     license = licenses.mit;
     maintainers = [ maintainers.jocelynthode ];