Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / shells / zsh / zsh-z / default.nix
bloba03b81cb6bfd2e11f72b1c22a9a33cbcaff9d399
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "zsh-z";
5   version = "unstable-2021-02-15";
7   src = fetchFromGitHub {
8     owner = "agkozak";
9     repo = pname;
10     rev = "595c883abec4682929ffe05eb2d088dd18e97557";
11     sha256 = "sha256-HnwUWqzwavh/Qox+siOe5lwTp7PBdiYx+9M0NMNFx00=";
12   };
14   strictDeps = true;
15   dontBuild = true;
17   installPhase = ''
18     mkdir -p $out/share/zsh-z
19     cp _zshz zsh-z.plugin.zsh $out/share/zsh-z
20   '';
22   meta = with lib; {
23     description = "Jump quickly to directories that you have visited frequently in the past, or recently";
24     homepage = "https://github.com/agkozak/zsh-z";
25     license = licenses.mit;
26     platforms = platforms.unix;
27     maintainers = [ maintainers.evalexpr ];
28   };