about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2018-11-20 13:52:13 +0900
committerGitHub <noreply@github.com>2018-11-20 13:52:13 +0900
commit75a26982e0c19a508ae12905d0023031c5561420 (patch)
treed9225a547f63fc569ab8f1ef1baa3ce49de372bf /pkgs/development
parent42b9c0ddabc8470dba09943b5e533c4441a733b1 (diff)
parent44d91411538887471a3b01ce81c5175e9567268d (diff)
downloadnixlib-75a26982e0c19a508ae12905d0023031c5561420.tar
nixlib-75a26982e0c19a508ae12905d0023031c5561420.tar.gz
nixlib-75a26982e0c19a508ae12905d0023031c5561420.tar.bz2
nixlib-75a26982e0c19a508ae12905d0023031c5561420.tar.lz
nixlib-75a26982e0c19a508ae12905d0023031c5561420.tar.xz
nixlib-75a26982e0c19a508ae12905d0023031c5561420.tar.zst
nixlib-75a26982e0c19a508ae12905d0023031c5561420.zip
Merge pull request #50736 from r-ryantm/auto-update/hunspell
hunspell: 1.6.2 -> 1.7.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/hunspell/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix
index 62c3d79cf9a1..3728c05e516c 100644
--- a/pkgs/development/libraries/hunspell/default.nix
+++ b/pkgs/development/libraries/hunspell/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, ncurses, readline, autoreconfHook }:
 
 stdenv.mkDerivation rec {
-  version = "1.6.2";
+  version = "1.7.0";
   name = "hunspell-${version}";
 
   src = fetchurl {
     url = "https://github.com/hunspell/hunspell/archive/v${version}.tar.gz";
-    sha256 = "1i7lsv2cm0713ia3j5wjkcrhpfp3lqpjpwp4d3v18n7ycaqcxn9w";
+    sha256 = "12mwwqz6qkx7q1lg9vpjiiwh4fk4c8xs6g6g0xa2ia0hp5pbh9xv";
   };
 
   outputs = [ "bin" "dev" "out" "man" ];