depot/third_party/nixpkgs/pkgs/shells/fish/plugins/plugin-git.nix
Default email 4d5a95770c Project import generated by Copybara.
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
2023-03-04 15:14:45 +03:00

20 lines
515 B
Nix

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