Merge pull request #196956 from oxzi/claws-mail-4.1.1

authored by Franz Pletz and committed by GitHub 834c3a42 93e0ac19

+4 -7
+4 -7
pkgs/applications/networking/mailreaders/claws-mail/default.nix
··· 98 98 ]; 99 99 in stdenv.mkDerivation rec { 100 100 pname = "claws-mail"; 101 - version = "4.1.0"; 101 + version = "4.1.1"; 102 102 103 103 src = fetchurl { 104 104 url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; 105 - hash = "sha256-DhqcoNuNKp4FiuMM3H/JGXeSFOw8Vu4Min+IzCOBeo4="; 105 + hash = "sha256-sYnnAMGJb14N6wt21L+oIOt6wZNe4Qqpr7raPPU6A0Q="; 106 106 }; 107 107 108 108 outputs = [ "out" "dev" ]; 109 109 110 110 patches = [ 111 111 ./mime.patch 112 - # fix build with perl 5.36+ 113 - (fetchurl { 114 - url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/claws-mail/trunk/20cope_with_fix_for_1009149.patch"; 115 - hash = "sha256-/WBslmoFvja2v2GEBntxvNtG0I3xtkUUqXO5gl5pqqs="; 116 - }) 117 112 ]; 118 113 119 114 preConfigure = '' ··· 124 119 ''; 125 120 126 121 postPatch = '' 122 + substituteInPlace configure.ac \ 123 + --replace 'm4_esyscmd([./get-git-version])' '${version}' 127 124 substituteInPlace src/procmime.c \ 128 125 --subst-var-by MIMEROOTDIR ${shared-mime-info}/share 129 126 '';