enchant: 1.6.0 -> 1.6.1

hunspell-1.7.0 broke enchant-1.6, upgrading to the latest 1.6 release fixes the
problem.
This commit is contained in:
Tor Hedin Brønner 2018-11-21 16:28:15 +01:00
parent 9dd56a9b1e
commit 16267b4389

View file

@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "1.6.0";
version = "1.6.1";
pname = "enchant";
src = fetchurl {
url = "http://www.abisource.com/downloads/${pname}/${version}/${name}.tar.gz";
sha256 = "0zq9yw1xzk8k9s6x83n1f9srzcwdavzazn3haln4nhp9wxxrxb1g";
url = "https://github.com/AbiWord/${pname}/releases/download/${pname}-1-6-1/${name}.tar.gz";
sha256 = "1xg3m7mniyqyff8qv46jbfwgchb6di6qxdjnd5sfir7jzv0dkw5y";
};
nativeBuildInputs = [ pkgconfig ];
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Generic spell checking library";
homepage = http://www.abisource.com/enchant;
homepage = https://abiword.github.io/enchant;
platforms = platforms.unix;
license = licenses.lgpl21;
};