2023-03-04 12:14:45 +00:00
|
|
|
{ lib, buildFishPlugin, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildFishPlugin rec {
|
|
|
|
pname = "plugin-git";
|
2024-10-04 16:56:33 +00:00
|
|
|
version = "0.3";
|
2023-03-04 12:14:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jhillyerd";
|
|
|
|
repo = "plugin-git";
|
2024-02-29 20:09:43 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-p7vvwisu3mvVOE1DcALbzuGJqWBcE1h71UjaopGdxE0=";
|
2023-03-04 12:14:45 +00:00
|
|
|
};
|
|
|
|
|
2024-10-04 16:56:33 +00:00
|
|
|
meta = {
|
2023-03-04 12:14:45 +00:00
|
|
|
description = "Git plugin for fish (similar to oh-my-zsh git)";
|
|
|
|
homepage = "https://github.com/jhillyerd/plugin-git";
|
2024-02-29 20:09:43 +00:00
|
|
|
changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
|
2024-10-04 16:56:33 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ GaetanLepage unsolvedcypher ];
|
2023-03-04 12:14:45 +00:00
|
|
|
};
|
|
|
|
}
|