From 7d3e45928bd2ea8ee4787522c68efed59334073b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Sun, 6 Oct 2024 10:52:49 +0200 Subject: [PATCH] fishPlugins.plugin-git: 0.2 -> 0.3 (#346751) Diff: https://github.com/jhillyerd/plugin-git/compare/refs/tags/v0.2...v0.3 Changelog: https://github.com/jhillyerd/plugin-git/releases/tag/v0.3 --- pkgs/shells/fish/plugins/plugin-git.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/shells/fish/plugins/plugin-git.nix b/pkgs/shells/fish/plugins/plugin-git.nix index f15a1bcb0eb7..d457df7dd498 100644 --- a/pkgs/shells/fish/plugins/plugin-git.nix +++ b/pkgs/shells/fish/plugins/plugin-git.nix @@ -2,20 +2,20 @@ buildFishPlugin rec { pname = "plugin-git"; - version = "0.2"; + version = "0.3"; src = fetchFromGitHub { owner = "jhillyerd"; repo = "plugin-git"; rev = "refs/tags/v${version}"; - hash = "sha256-DQLRat7uGoK57g/1x9Y514gtjvDdf9j4Iqnwif8QWVU="; + hash = "sha256-p7vvwisu3mvVOE1DcALbzuGJqWBcE1h71UjaopGdxE0="; }; - meta = with lib; { + meta = { 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; [ GaetanLepage unsolvedcypher ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage unsolvedcypher ]; }; }