about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authormaxine <35892750+amaxine@users.noreply.github.com>2024-02-10 11:04:46 +0100
committerGitHub <noreply@github.com>2024-02-10 11:04:46 +0100
commit4f66133f9388355a4dda1ff54a053f57dee86bc2 (patch)
treeb7a406ab44927b0dbbc783eae81cf307090d0f13 /pkgs/shells
parent2dc8e7e1d5d3ffed6993bd7283d69e0c9ca3f41d (diff)
parent5b268e13138a5eed6527835c0012255f04103f33 (diff)
Merge pull request #287591 from GaetanLepage/plugin-git
fishPlugins.plugin-git: 0.1 -> 0.2
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/fish/plugins/plugin-git.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/shells/fish/plugins/plugin-git.nix b/pkgs/shells/fish/plugins/plugin-git.nix
index 7d1774b642dfe..0334271e581c4 100644
--- a/pkgs/shells/fish/plugins/plugin-git.nix
+++ b/pkgs/shells/fish/plugins/plugin-git.nix
@@ -2,19 +2,20 @@
 
 buildFishPlugin rec {
   pname = "plugin-git";
-  version = "0.1";
+  version = "0.2";
 
   src = fetchFromGitHub {
     owner = "jhillyerd";
     repo = "plugin-git";
-    rev = "v0.1";
-    sha256 = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE";
   };
 
   meta = with lib; {
     description = "Git plugin for fish (similar to oh-my-zsh git)";
     homepage = "https://github.com/jhillyerd/plugin-git";
+    changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
     license = licenses.mit;
-    maintainers = with maintainers; [ unsolvedcypher ];
+    maintainers = with maintainers; [ GaetanLepage unsolvedcypher ];
   };
 }