summary refs log tree commit diff
path: root/pkgs/development/libraries/enchant
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-02-28 13:57:41 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-02-28 13:57:41 +0000
commite68418d000fae545abba5c9cabbc12e666d6d4c9 (patch)
treebb4670199a7c6dc080389ecb63fa9f27e910db54 /pkgs/development/libraries/enchant
parentf7d07d48513dd3bf8f84f347c3c0e1800207f01d (diff)
downloadnixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar.gz
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar.bz2
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar.lz
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar.xz
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.tar.zst
nixpkgs-e68418d000fae545abba5c9cabbc12e666d6d4c9.zip
enchant: 2.2.7 -> 2.2.8
Diffstat (limited to 'pkgs/development/libraries/enchant')
-rw-r--r--pkgs/development/libraries/enchant/2.x.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/enchant/2.x.nix b/pkgs/development/libraries/enchant/2.x.nix
index c92afee6dc9..65d85eddbe4 100644
--- a/pkgs/development/libraries/enchant/2.x.nix
+++ b/pkgs/development/libraries/enchant/2.x.nix
@@ -10,13 +10,13 @@
 
 stdenv.mkDerivation rec {
   pname = "enchant";
-  version = "2.2.7";
+  version = "2.2.8";
 
   outputs = [ "out" "dev" ];
 
   src = fetchurl {
     url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
-    sha256 = "029smcna98hllgkm2gy94qa7qphxs4xaa8cdbg5kaaw16mhrf8hv";
+    sha256 = "0m9m564qqwbssvvf7y3dlz1yxzqsjiqy1yd2zsmb3l0d7y2y5df7";
   };
 
   nativeBuildInputs = [
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Generic spell checking library";
-    homepage = https://abiword.github.io/enchant/;
+    homepage = "https://abiword.github.io/enchant/";
     license = licenses.lgpl21Plus; # with extra provision for non-free checkers
     maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.unix;