Skip to content

Commit

Permalink
aspell: 0.60.6.1 -> 0.60.8
Browse files Browse the repository at this point in the history
See http://aspell.net/aspell-0.60.8.txt for release information.
(NixOS#71242)
  • Loading branch information
lsix authored and c0bw3b committed Nov 23, 2019
1 parent c090edf commit 648678f
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions pkgs/development/libraries/aspell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,20 @@ let
in

stdenv.mkDerivation rec {
name = "aspell-0.60.6.1";
name = "aspell-0.60.8";

src = fetchurl {
url = "mirror://gnu/aspell/${name}.tar.gz";
sha256 = "1qgn5psfyhbrnap275xjfrzppf5a83fb67gpql0kfqv37al869gm";
sha256 = "1wi60ankalmh8ds7nplz434jd7j94gdvbahdwsr539rlad8pxdzr";
};

patches = [
(fetchpatch { # remove in >= 0.60.7
name = "gcc-7.patch";
url = "https://github.com/GNUAspell/aspell/commit/8089fa02122fed0a.diff";
sha256 = "1b3p1zy2lqr2fknddckm58hyk95hw4scf6hzjny1v9iaic2p37ix";
})
] ++ stdenv.lib.optional searchNixProfiles ./data-dirs-from-nix-profiles.patch;
patches = stdenv.lib.optional searchNixProfiles ./data-dirs-from-nix-profiles.patch;

postPatch = ''
patch interfaces/cc/aspell.h < ${./clang.patch}
'';

nativeBuildInputs = [ perl ];
buildInputs = [ perl ];

doCheck = true;

Expand Down

0 comments on commit 648678f

Please sign in to comment.