fishPlugins.plugin-git: init at 0.1
This commit is contained in:
parent
01bf3b02f7
commit
32a93b58b2
2 changed files with 22 additions and 0 deletions
|
@ -32,6 +32,8 @@ lib.makeScope newScope (self: with self; {
|
|||
|
||||
pisces = callPackage ./pisces.nix { };
|
||||
|
||||
plugin-git = callPackage ./plugin-git.nix { };
|
||||
|
||||
puffer = callPackage ./puffer.nix { };
|
||||
|
||||
pure = callPackage ./pure.nix { };
|
||||
|
|
20
pkgs/shells/fish/plugins/plugin-git.nix
Normal file
20
pkgs/shells/fish/plugins/plugin-git.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue