Loading pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading pkgs/shells/fish/plugins/plugin-git.nix 0 → 100644 +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 ]; }; } Loading
pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading
pkgs/shells/fish/plugins/plugin-git.nix 0 → 100644 +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 ]; }; }