zsh-fzf-tab: 1.1.1 -> 1.1.2

This commit is contained in:
Pyrox 2024-05-12 22:37:09 -04:00
parent 83c38d36a7
commit 3a86eb9e05
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5

View File

@ -4,13 +4,13 @@ let
INSTALL_PATH="${placeholder "out"}/share/fzf-tab";
in stdenv.mkDerivation rec {
pname = "zsh-fzf-tab";
version = "1.1.1";
version = "1.1.2";
src = fetchFromGitHub {
owner = "Aloxaf";
repo = "fzf-tab";
rev = "v${version}";
hash = "sha256-0/YOL1/G2SWncbLNaclSYUz7VyfWu+OB8TYJYm4NYkM=";
hash = "sha256-Qv8zAiMtrr67CbLRrFjGaPzFZcOiMVEFLg1Z+N6VMhg=";
};
strictDeps = true;
@ -81,11 +81,11 @@ in stdenv.mkDerivation rec {
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
homepage = "https://github.com/Aloxaf/fzf-tab";
description = "Replace zsh's default completion selection menu with fzf!";
license = licenses.mit;
maintainers = with maintainers; [ vonfry ];
platforms = platforms.unix;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ vonfry ];
platforms = lib.platforms.unix;
};
}