nixpkgs/pkgs/shells/fish/plugins/plugin-git.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
628 B
Nix
Raw Normal View History

2023-02-24 00:58:41 +00:00
{ lib, buildFishPlugin, fetchFromGitHub }:
buildFishPlugin rec {
pname = "plugin-git";
version = "0.2";
2023-02-24 00:58:41 +00:00
src = fetchFromGitHub {
owner = "jhillyerd";
repo = "plugin-git";
rev = "refs/tags/v${version}";
2024-02-10 11:58:32 +00:00
hash = "sha256-DQLRat7uGoK57g/1x9Y514gtjvDdf9j4Iqnwif8QWVU=";
2023-02-24 00:58:41 +00:00
};
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}";
2023-02-24 00:58:41 +00:00
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage unsolvedcypher ];
2023-02-24 00:58:41 +00:00
};
}