summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell/default.nix
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-12 23:20:54 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-13 00:05:42 +0200
commit59e9c12db3bc1f68da113b5e4b5baad721bb8321 (patch)
tree27ff126d837e1b399f987ebd9fc319a972149245 /pkgs/development/libraries/gtkspell/default.nix
parentaed19d59ae0b5afac92c924fe561216244ba85cb (diff)
gtk-spell: add meta data
Diffstat (limited to 'pkgs/development/libraries/gtkspell/default.nix')
-rw-r--r--pkgs/development/libraries/gtkspell/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gtkspell/default.nix b/pkgs/development/libraries/gtkspell/default.nix
index 22094f3a3f649..14676be0dcb97 100644
--- a/pkgs/development/libraries/gtkspell/default.nix
+++ b/pkgs/development/libraries/gtkspell/default.nix
@@ -2,16 +2,19 @@
 
 stdenv.mkDerivation {
   name = "gtkspell-2.0.16";
-  
+
   src = fetchurl {
     url = mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz;
     sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
   };
-  
+
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [aspell gtk2 enchant intltool];
 
-  meta = {
-    platforms = stdenv.lib.platforms.unix;
+  meta = with stdenv.lib; {
+    description = "Word-processor-style highlighting and replacement of misspelled words";
+    homepage = http://gtkspell.sourceforge.net;
+    platforms = platforms.unix;
+    license = licenses.gpl2;
   };
 }