summary refs log tree commit diff
diff options
context:
space:
mode:
authorKid <44045911+kidonng@users.noreply.github.com>2022-03-18 19:34:34 +0000
committerGitHub <noreply@github.com>2022-03-18 19:35:42 +0000
commit3c7f457e4c9df00d2320fefd20f2a865d3dd009b (patch)
tree8ab97b1db22f420ba5237039f1bad443aae0e5e6
parentd609c9c79e467929282a14c4226f823868e2672c (diff)
downloadnixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar.gz
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar.bz2
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar.lz
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar.xz
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.tar.zst
nixpkgs-3c7f457e4c9df00d2320fefd20f2a865d3dd009b.zip
fishPlugins.hydro: fix meta
-rw-r--r--pkgs/shells/fish/plugins/hydro.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/shells/fish/plugins/hydro.nix b/pkgs/shells/fish/plugins/hydro.nix
index efc85cfcd0b..eddb88a225d 100644
--- a/pkgs/shells/fish/plugins/hydro.nix
+++ b/pkgs/shells/fish/plugins/hydro.nix
@@ -2,18 +2,18 @@
 
 buildFishPlugin rec {
   pname = "hydro";
-  version = "d4875065ceea226f58ead97dd9b2417937344d6e";
+  version = "unstable-2022-02-21";
 
   src = fetchFromGitHub {
     owner = "jorgebucaran";
     repo = "hydro";
-    rev = version;
+    rev = "d4875065ceea226f58ead97dd9b2417937344d6e";
     sha256 = "sha256-nXeDnqqOuZyrqGTPEQtYlFvrFvy1bZVMF4CA37b0lsE=";
   };
 
   meta = with lib; {
-    description = "Ultra-pure, lag-free prompt with async Git status.";
-    homepage = "https://github.com/jorgebucaran/hydro`";
+    description = "Ultra-pure, lag-free prompt with async Git status";
+    homepage = "https://github.com/jorgebucaran/hydro";
     license = licenses.mit;
     maintainers = with maintainers; [ mrhedgehog ];
   };