ansifilter: 2.19 -> 2.20

Diff: https://gitlab.com/saalen/ansifilter/-/compare/2.19...2.20

Nick Cao 8a7056ca b7c478e7

+2 -3
+2 -3
pkgs/tools/text/ansifilter/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ansifilter"; 5 - version = "2.19"; 5 + version = "2.20"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.andre-simon.de/zip/ansifilter-${version}.tar.bz2"; 9 - hash = "sha256-+cJ7GIORShsdSWX0xJsr5QLiqfyd0/YRI6vq6YnDVLw="; 9 + hash = "sha256-Neydcaf05WATN5N8dzSzKm40bA8FT00xY3aCPP5nkGc="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ boost lua ]; 14 14 15 15 postPatch = '' 16 - substituteInPlace src/makefile --replace "CC=g++" "CC=c++" 17 16 # avoid timestamp non-determinism with '-n' 18 17 substituteInPlace makefile --replace 'gzip -9f' 'gzip -9nf' 19 18 '';