summary refs log tree commit diff
path: root/pkgs/servers/dico
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-04-01 17:31:44 +0000
committerLudovic Courtès <ludo@gnu.org>2009-04-01 17:31:44 +0000
commit25f22ceed6272d22f6cd62e49d3046c65a03ee92 (patch)
treed0f8d75f1355a516ff5fe867143862349f10f2e6 /pkgs/servers/dico
parent829f95f8366b566d0111961dd2dff07ef0e36a7d (diff)
downloadnixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar.gz
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar.bz2
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar.lz
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar.xz
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.tar.zst
nixpkgs-25f22ceed6272d22f6cd62e49d3046c65a03ee92.zip
Add GNU Dico, a DICT server and client.
svn path=/nixpkgs/trunk/; revision=14825
Diffstat (limited to 'pkgs/servers/dico')
-rw-r--r--pkgs/servers/dico/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/servers/dico/default.nix b/pkgs/servers/dico/default.nix
new file mode 100644
index 00000000000..0be61a1a558
--- /dev/null
+++ b/pkgs/servers/dico/default.nix
@@ -0,0 +1,43 @@
+{ fetchurl, stdenv, libtool, gettext, zlib, readline, guile, python }:
+
+stdenv.mkDerivation rec {
+  name = "dico-2.0";
+
+  src = fetchurl {
+    url = "mirror://gnu/dico/${name}.tar.gz";
+    sha256 = "03cpg16jbsv5xh9mvyjj7myvpdpb82354a1yjrhcy0k5w8faa9kv";
+  };
+
+  # XXX: Add support for GNU SASL.
+  buildInputs = [ libtool gettext zlib readline guile python ];
+
+  doCheck = true;
+
+  meta = {
+    description = "GNU Dico, a flexible dictionary server and client implementing RFC 2229";
+
+    longDescription = ''
+      GNU Dico is a flexible modular implementation of DICT server
+      (RFC 2229).  In contrast to another existing servers, it does
+      not depend on particular database format, instead it handles
+      database accesses using loadable modules.
+
+      The package includes several loadable modules for interfacing
+      with various database formats, among them a module for dict.org
+      databases and a module for transparently accessing Wikipedia or
+      Wiktionary sites as a dictionary database.
+
+      New modules can easily be written in C, Guile or Python.  The
+      module API is mature and well documented.
+
+      A web interface serving several databases is available.
+
+      The package also includes a console client program for querying
+      remote dictionary servers.
+    '';
+
+    homepage = http://www.gnu.org/software/dico/;
+
+    license = "GPLv3+";
+  };
+}