about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-10 20:36:20 +0200
committerGitHub <noreply@github.com>2021-06-10 20:36:20 +0200
commit27d282828d1b21625f271d2cc8e853a0de69fc43 (patch)
treeab2813a7d24d51edf8832e3f9c7bed01af4f7b4d /pkgs/shells
parentd8d30391d53e822d8fc61d2b1137e7d29e06ea29 (diff)
parenta90479bec772710c2d8fdfcd7f29c91f7d514365 (diff)
downloadnixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar.gz
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar.bz2
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar.lz
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar.xz
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.tar.zst
nixlib-27d282828d1b21625f271d2cc8e853a0de69fc43.zip
Merge pull request #126376 from michaeladler/update-zsh-fast-syntax-highlighting
zsh-fast-syntax-highlighting: 1.54 -> 1.55
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/zsh-fast-syntax-highlighting/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/zsh/zsh-fast-syntax-highlighting/default.nix b/pkgs/shells/zsh/zsh-fast-syntax-highlighting/default.nix
index 452419bf8b09..d1791e4962f4 100644
--- a/pkgs/shells/zsh/zsh-fast-syntax-highlighting/default.nix
+++ b/pkgs/shells/zsh/zsh-fast-syntax-highlighting/default.nix
@@ -2,13 +2,13 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "zsh-fast-syntax-highlighting";
-  version = "1.54";
+  version = "1.55";
 
   src = fetchFromGitHub {
     owner = "zdharma";
     repo = "fast-syntax-highlighting";
     rev = "v${version}";
-    sha256 = "019hda2pj8lf7px4h1z07b9l6icxx4b2a072jw36lz9bh6jahp32";
+    sha256 = "0h7f27gz586xxw7cc0wyiv3bx0x3qih2wwh05ad85bh2h834ar8d";
   };
 
   dontConfigure = true;
@@ -18,7 +18,7 @@ stdenvNoCC.mkDerivation rec {
     plugindir="$out/share/zsh/site-functions"
 
     mkdir -p "$plugindir"
-    cp -r -- {,_,-}fast-* chroma themes "$plugindir"/
+    cp -r -- {,_,-,.}fast-* *chroma themes "$plugindir"/
   '';
 
   meta = with lib; {