about summary refs log tree commit diff
path: root/pkgs/development/libraries/mythes
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-08-30 00:35:30 +0400
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-08-31 12:03:25 +0400
commit38d07f50183afbe49d1fcb953413c252807fd1b5 (patch)
tree6dfad7b89dbcd87a3419f01bdabe3e6f51792292 /pkgs/development/libraries/mythes
parent28f0597bd60378b9b323d0b31799bf07f64d0a4e (diff)
Add MyThes
Diffstat (limited to 'pkgs/development/libraries/mythes')
-rw-r--r--pkgs/development/libraries/mythes/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mythes/default.nix b/pkgs/development/libraries/mythes/default.nix
new file mode 100644
index 0000000000000..ff06f2a005068
--- /dev/null
+++ b/pkgs/development/libraries/mythes/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, hunspell, pkgconfig, perl }:
+
+stdenv.mkDerivation rec {
+  name = "mythes-1.2.3";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/hunspell/${name}.tar.gz";
+    sha256 = "0f5q7yiwg9bw4a5zxg0dapqdfc2grfb4ss34ifir3mhhy4q3jf4j";
+  };
+
+  buildInputs = [ hunspell ];
+  buildNativeInputs = [ pkgconfig perl ];
+
+  meta = {
+    homepage = http://hunspell.sourceforge.net/;
+    description = "Thesaurus library from Hunspell project";
+    inherit (hunspell.meta) platforms;
+  };
+}