summaryrefslogtreecommitdiff
path: root/pkgs/shells/fish/plugins/z.nix
blob: 63b37396bc7f0c097531a8d6226f6c75981285b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
}:
buildFishPlugin {
  pname = "z";
  version = "0-unstable-2022-04-08";

  src = fetchFromGitHub {
    owner = "jethrokuan";
    repo = "z";
    rev = "85f863f20f24faf675827fb00f3a4e15c7838d76";
    sha256 = "sha256-+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0=";
  };

  meta = {
    description = "Pure-fish z directory jumping";
    homepage = "https://github.com/jethrokuan/z";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ Scrumplex ];
  };
}