about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/plugin-git.nix
blob: 7d1774b642dfe871d763befa1971cb6ffbc5c070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin rec {
  pname = "plugin-git";
  version = "0.1";

  src = fetchFromGitHub {
    owner = "jhillyerd";
    repo = "plugin-git";
    rev = "v0.1";
    sha256 = "sha256-MfrRQdcj7UtIUgtqKjt4lqFLpA6YZgKjE03VaaypNzE";
  };

  meta = with lib; {
    description = "Git plugin for fish (similar to oh-my-zsh git)";
    homepage = "https://github.com/jhillyerd/plugin-git";
    license = licenses.mit;
    maintainers = with maintainers; [ unsolvedcypher ];
  };
}