Merge pull request #120733 from evalexpr/add-zsh-z

authored by

Sandro and committed by
GitHub
e9547b6a 8c70a1a9

+40
+10
maintainers/maintainer-list.nix
··· 3107 3107 githubId = 2147649; 3108 3108 name = "Euan Kemp"; 3109 3109 }; 3110 + evalexpr = { 3111 + name = "Jonathan Wilkins"; 3112 + email = "nixos@wilkins.tech"; 3113 + github = "evalexpr"; 3114 + githubId = 23485511; 3115 + keys = [{ 3116 + longkeyid = "rsa4096/0x2D1D402E17763DD6"; 3117 + fingerprint = "8129 5B85 9C5A F703 C2F4 1E29 2D1D 402E 1776 3DD6"; 3118 + }]; 3119 + }; 3110 3120 evanjs = { 3111 3121 email = "evanjsx@gmail.com"; 3112 3122 github = "evanjs";
+28
pkgs/shells/zsh/zsh-z/default.nix
··· 1 + { lib, stdenvNoCC, fetchFromGitHub }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "zsh-z"; 5 + version = "unstable-2021-02-15"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "agkozak"; 9 + repo = pname; 10 + rev = "595c883abec4682929ffe05eb2d088dd18e97557"; 11 + sha256 = "sha256-HnwUWqzwavh/Qox+siOe5lwTp7PBdiYx+9M0NMNFx00="; 12 + }; 13 + 14 + dontBuild = true; 15 + 16 + installPhase = '' 17 + mkdir -p $out/share/zsh-z 18 + cp _zshz zsh-z.plugin.zsh $out/share/zsh-z 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Jump quickly to directories that you have visited frequently in the past, or recently"; 23 + homepage = "https://github.com/agkozak/zsh-z"; 24 + license = licenses.mit; 25 + platforms = platforms.unix; 26 + maintainers = [ maintainers.evalexpr ]; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 9871 9871 9872 9872 zsh-you-should-use = callPackage ../shells/zsh/zsh-you-should-use { }; 9873 9873 9874 + zsh-z = callPackage ../shells/zsh/zsh-z { }; 9875 + 9874 9876 zssh = callPackage ../tools/networking/zssh { }; 9875 9877 9876 9878 zstd = callPackage ../tools/compression/zstd {