summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/artha
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2015-08-27 00:50:36 +0200
committerCillian de Róiste <cillian.deroiste@gmail.com>2015-08-27 00:50:50 +0200
commitcef7bccbbf1b87cb62acb7279ca56dd1fbd86909 (patch)
treef776b225cb59889bbc7d9b7bc16a6ade3f9d3f43 /pkgs/applications/misc/artha
parent51cd219cd58b5cf51fb2af9231dd7385307b982e (diff)
Add artha 1.0.3: an offline thesaurus
Diffstat (limited to 'pkgs/applications/misc/artha')
-rw-r--r--pkgs/applications/misc/artha/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/misc/artha/default.nix b/pkgs/applications/misc/artha/default.nix
new file mode 100644
index 000000000000..a8914a9014d9
--- /dev/null
+++ b/pkgs/applications/misc/artha/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, dbus_glib, gtk, pkgconfig, wordnet }:
+
+stdenv.mkDerivation rec {
+ name = "artha-${version}";
+ version = "1.0.3";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/artha/1.0.3/artha-1.0.3.tar.bz2";
+ sha256 = "0qr4ihl7ma3cq82xi1fpzvf74mm9vsg0j035xvmcp3r6rmw2fycx";
+ };
+
+ buildInputs = [ dbus_glib gtk pkgconfig wordnet ];
+
+ meta = with stdenv.lib; {
+ description = "An offline thesaurus based on WordNet";
+ homepage = http://artha.sourceforge.net;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.goibhniu ];
+ platforms = platforms.linux;
+ };
+}