Gaetan Lepage 2024-02-09 23:27:41 +01:00
parent 985e20cefe
commit c25c4d4933

View File

@ -2,18 +2,19 @@
buildFishPlugin rec { buildFishPlugin rec {
pname = "plugin-git"; pname = "plugin-git";
version = "0.1"; version = "0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jhillyerd"; owner = "jhillyerd";
repo = "plugin-git"; repo = "plugin-git";
rev = "v0.1"; rev = "refs/tags/v${version}";
sha256 = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE"; hash = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE";
}; };
meta = with lib; { meta = with lib; {
description = "Git plugin for fish (similar to oh-my-zsh git)"; description = "Git plugin for fish (similar to oh-my-zsh git)";
homepage = "https://github.com/jhillyerd/plugin-git"; homepage = "https://github.com/jhillyerd/plugin-git";
changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ unsolvedcypher ]; maintainers = with maintainers; [ unsolvedcypher ];
}; };