fishPlugins.plugin-git: init at 0.1

This commit is contained in:
Matthew McMillan 2023-02-23 19:58:41 -05:00 committed by Cole Helbling
parent 01bf3b02f7
commit 32a93b58b2
2 changed files with 22 additions and 0 deletions

View File

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

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