lol

aspell: 0.60.8 -> 0.60.8.1

Changes: http://aspell.net/man-html/ChangeLog.html

+4 -11
+4 -11
pkgs/development/libraries/aspell/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, fetchzip, perl, ncurses 1 + { lib, stdenv, fetchurl, fetchzip, perl, ncurses 2 2 3 3 # for tests 4 4 , aspell, glibc, runCommand ··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "aspell"; 23 - version = "0.60.8"; 23 + version = "0.60.8.1"; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://gnu/aspell/aspell-${version}.tar.gz"; 27 - sha256 = "1wi60ankalmh8ds7nplz434jd7j94gdvbahdwsr539rlad8pxdzr"; 27 + hash = "sha256-1toSs01C1Ff6YE5DWtSEp0su/80SD/QKzWuz+yiH0hs="; 28 28 }; 29 29 30 - patches = [ 31 - (fetchpatch { 32 - # objstack: assert that the alloc size will fit within a chunk 33 - name = "CVE-2019-25051.patch"; 34 - url = "https://github.com/gnuaspell/aspell/commit/0718b375425aad8e54e1150313b862e4c6fd324a.patch"; 35 - sha256 = "03z259xrk41x3j190gaprf3mqysyfgh3a04rjmch3h625vj95x39"; 36 - }) 37 - ] ++ lib.optional searchNixProfiles ./data-dirs-from-nix-profiles.patch; 30 + patches = lib.optional searchNixProfiles ./data-dirs-from-nix-profiles.patch; 38 31 39 32 postPatch = '' 40 33 patch interfaces/cc/aspell.h < ${./clang.patch}