Merge pull request #287591 from GaetanLepage/plugin-git

fishPlugins.plugin-git: 0.1 -> 0.2
This commit is contained in:
maxine 2024-02-10 11:04:46 +01:00 committed by GitHub
commit 4f66133f93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 ];
};
}