summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-30 11:05:52 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-30 11:07:59 +0100
commit8efc0c592b798104ea4dc145a149e1281b3a99c0 (patch)
treeb320f84a61848ca7cf22b0bacaeef0cc6686a754 /pkgs/development/libraries/hunspell
parent9440f55ef843257c41e4fe78e42d0f89033b86ee (diff)
downloadnixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar.gz
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar.bz2
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar.lz
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar.xz
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.tar.zst
nixpkgs-8efc0c592b798104ea4dc145a149e1281b3a99c0.zip
hunspell: update from 1.3.2 to 1.3.3
urkud is no longer active so I am hijacking maintainership label on this

cc @urkud
Diffstat (limited to 'pkgs/development/libraries/hunspell')
-rw-r--r--pkgs/development/libraries/hunspell/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix
index 95516dadacf..9ae1a5cf88a 100644
--- a/pkgs/development/libraries/hunspell/default.nix
+++ b/pkgs/development/libraries/hunspell/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, ncurses, readline }:
 
 stdenv.mkDerivation rec {
-  name = "hunspell-1.3.2";
+  name = "hunspell-1.3.3";
 
   src = fetchurl {
     url = "mirror://sourceforge/hunspell/${name}.tar.gz";
-    sha256 = "1gfxdajnqk2civkshkfjx5ldg7kjdgj76m5khpsbjk4lxsjd9vdl";
+    sha256 = "0v14ff9s37vkh45diaddndcrj0hmn67arh8xh8k79q9c1vgc1cm7";
   };
 
   propagatedBuildInputs = [ ncurses readline ];
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
         * Delphi, Java (JNA, JNI), Perl, .NET, Python, Ruby ([1], [2]), UNO.
     '';
     platforms = platforms.all;
-    maintainers = [ maintainers.urkud ];
+    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
   };
 }