lol

zsh-f-sy-h: init at v1.67

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>

+34
+32
pkgs/shells/zsh/zsh-f-sy-h/default.nix
··· 1 + { stdenvNoCC, lib, fetchFromGitHub }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "zsh-f-sy-h"; 5 + version = "1.67"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "z-shell"; 9 + repo = "F-Sy-H"; 10 + rev = "v${version}"; 11 + sha256 = "0bcsc4kgda577fs3bnvymmxdz3z5mf19pn8ngfqsklabnf79f5nf"; 12 + }; 13 + 14 + strictDeps = true; 15 + dontConfigure = true; 16 + dontBuild = true; 17 + 18 + installPhase = '' 19 + plugindir="$out/share/zsh/site-functions" 20 + 21 + mkdir -p "$plugindir" 22 + cp -r -- F-Sy-H.plugin.zsh chroma functions share themes "$plugindir"/ 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Feature-rich Syntax Highlighting for Zsh"; 27 + homepage = "https://github.com/z-shell/F-Sy-H"; 28 + license = licenses.bsd3; 29 + maintainers = with maintainers; [ mrfreezeex ]; 30 + platforms = platforms.unix; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 13890 13890 13891 13891 zsh-system-clipboard = callPackage ../shells/zsh/zsh-system-clipboard { }; 13892 13892 13893 + zsh-f-sy-h = callPackage ../shells/zsh/zsh-f-sy-h { }; 13894 + 13893 13895 zsh-fast-syntax-highlighting = callPackage ../shells/zsh/zsh-fast-syntax-highlighting { }; 13894 13896 13895 13897 zsh-forgit = callPackage ../shells/zsh/zsh-forgit { };