nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #54552 from NixOS/update-zsh-5.7

zsh: 5.6.2 -> 5.7

authored by

Pascal Wittmann and committed by
GitHub
5aeaedc6 b1ddb5fc

+3 -12
+3 -12
pkgs/shells/zsh/default.nix
··· 1 1 { stdenv, fetchurl, ncurses, pcre, fetchpatch }: 2 2 3 3 let 4 - version = "5.6.2"; 4 + version = "5.7"; 5 5 6 6 documentation = fetchurl { 7 7 url = "mirror://sourceforge/zsh/zsh-${version}-doc.tar.xz"; 8 - sha256 = "05014rg6hkwiv1p56iij8wn2rghmwjxs5qsj3d3xigbwaikk55wq"; 8 + sha256 = "0pgisyi82pg5mycx1k7vfx9hwzl6zq00r5s9v91lg4gqisvlvagh"; 9 9 }; 10 10 11 11 in ··· 15 15 16 16 src = fetchurl { 17 17 url = "mirror://sourceforge/zsh/zsh-${version}.tar.xz"; 18 - sha256 = "17iffliqcj4hv91g0bd2sxsyfcz51mfyh97sp2iyrs2p0mndc2x5"; 18 + sha256 = "04ynid3ggvy6i5c26bk52mq6x5vyrdwgryid9hggmnb1nf8b41vq"; 19 19 }; 20 - 21 - patches = [ 22 - (fetchpatch { 23 - name = "search-xdg-data-dirs.patch"; 24 - url = https://github.com/zsh-users/zsh/commit/624219e0e4cbfdfb286e707bd2853f2d7b6a4a7d.patch; 25 - sha256 = "0i0g7dc0px57vpklm1f4w20vyc92nv15y09r5clvib2kjkxjy2cf"; 26 - excludes = [ "ChangeLog" ]; 27 - }) 28 - ]; 29 20 30 21 buildInputs = [ ncurses pcre ]; 31 22