Commit 32a93b58 authored by Matthew McMillan's avatar Matthew McMillan Committed by Cole Helbling
Browse files

fishPlugins.plugin-git: init at 0.1

parent 01bf3b02
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}