biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / zsh-fast-syntax-highlighting / default.nix
blob68f09828b456241ebd131d80c1de3ec80372428d
1 { stdenvNoCC, lib, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "zsh-fast-syntax-highlighting";
5   version = "1.55";
7   src = fetchFromGitHub {
8     owner = "zdharma-continuum";
9     repo = "fast-syntax-highlighting";
10     rev = "v${version}";
11     sha256 = "0h7f27gz586xxw7cc0wyiv3bx0x3qih2wwh05ad85bh2h834ar8d";
12   };
14   strictDeps = true;
15   dontConfigure = true;
16   dontBuild = true;
18   installPhase = ''
19     plugindir="$out/share/zsh/site-functions"
21     mkdir -p "$plugindir"
22     cp -r -- {,_,-,.}fast-* *chroma themes "$plugindir"/
23   '';
25   meta = with lib; {
26     description = "Syntax-highlighting for Zshell";
27     homepage = "https://github.com/zdharma-continuum/fast-syntax-highlighting";
28     license = licenses.bsd3;
29     platforms = platforms.unix;
30   };