summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-11-17 23:32:45 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-11-18 02:11:13 +0100
commit3b04b58beeee85bfee3cec0521bd78c3217cc760 (patch)
tree58d1d5cd543d92773f362bcb9cdb479ddc8f20fe /pkgs/development/libraries/gtkspell
parent699f124990ef2197674cc649bbe2db3d127b4423 (diff)
gtkspell3: 3.0.9 → 3.0.10
Diffstat (limited to 'pkgs/development/libraries/gtkspell')
-rw-r--r--pkgs/development/libraries/gtkspell/3.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index d5fc094844a78..1103151100068 100644
--- a/pkgs/development/libraries/gtkspell/3.nix
+++ b/pkgs/development/libraries/gtkspell/3.nix
@@ -1,19 +1,19 @@
-{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection, vala}:
+{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant2, isocodes, intltool, gobjectIntrospection, vala}:
 
 stdenv.mkDerivation rec {
   name = "gtkspell-${version}";
-  version = "3.0.9";
+  version = "3.0.10";
 
   outputs = [ "out" "dev" ];
 
   src = fetchurl {
     url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
-    sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
+    sha256 = "0cjp6xdcnzh6kka42w9g0w2ihqjlq8yl8hjm9wsfnixk6qwgch5h";
   };
 
   nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection vala ];
-  buildInputs = [ aspell gtk3 enchant isocodes ];
-  propagatedBuildInputs = [ enchant ];
+  buildInputs = [ aspell gtk3 enchant2 isocodes ];
+  propagatedBuildInputs = [ enchant2 ];
 
   configureFlags = [
     "--enable-introspection"