about summary refs log tree commit diff
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-12 20:38:46 -0500
committerndowens <ndowens04@gmail.com>2017-03-12 20:38:46 -0500
commitafeb989c5c400b5439f2019bf4e31fb00aaade7f (patch)
tree5683fb320ce1c71ac8fd75d100e24c70b4993d09
parent54b7c3b63fd46f66487f4b29fb4b42d0c6353118 (diff)
downloadnixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar.gz
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar.bz2
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar.lz
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar.xz
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.tar.zst
nixlib-afeb989c5c400b5439f2019bf4e31fb00aaade7f.zip
gtkspell:3.0.8 -> 3.0.9
-rw-r--r--pkgs/development/libraries/gtkspell/3.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index 1b28477f1e0c..c6cc51b1e1f8 100644
--- a/pkgs/development/libraries/gtkspell/3.nix
+++ b/pkgs/development/libraries/gtkspell/3.nix
@@ -2,21 +2,22 @@
 
 stdenv.mkDerivation rec {
   name = "gtkspell-${version}";
-  version = "3.0.8";
+  version = "3.0.9";
 
   src = fetchurl {
-    url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
-    sha256 = "1zrz5pz4ryvcssk898liynmy2wyxgj95ak7mp2jv7x62yzihq6h1";
+    url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
+    sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
   };
 
-  buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
+  nativeBuildInputs = [ pkgconfig intltool ];
+  buildInputs = [ aspell gtk3 enchant ];
   propagatedBuildInputs = [ enchant ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = "http://gtkspell.sourceforge.net/";
     description = "Word-processor-style highlighting GtkTextView widget";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ fuuzetsu ];
   };
 }