Add artha 1.0.3: an offline thesaurus
This commit is contained in:
parent
51cd219cd5
commit
cef7bccbbf
21
pkgs/applications/misc/artha/default.nix
Normal file
21
pkgs/applications/misc/artha/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -10772,6 +10772,8 @@ let
|
||||
|
||||
arora = callPackage ../applications/networking/browsers/arora { };
|
||||
|
||||
artha = callPackage ../applications/misc/artha { };
|
||||
|
||||
atom = callPackage ../applications/editors/atom {
|
||||
gconf = gnome.GConf;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user