Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Add artha 1.0.3: an offline thesaurus

+23
+21
pkgs/applications/misc/artha/default.nix
··· 1 + { stdenv, fetchurl, dbus_glib, gtk, pkgconfig, wordnet }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "artha-${version}"; 5 + version = "1.0.3"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/artha/1.0.3/artha-1.0.3.tar.bz2"; 9 + sha256 = "0qr4ihl7ma3cq82xi1fpzvf74mm9vsg0j035xvmcp3r6rmw2fycx"; 10 + }; 11 + 12 + buildInputs = [ dbus_glib gtk pkgconfig wordnet ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "An offline thesaurus based on WordNet"; 16 + homepage = http://artha.sourceforge.net; 17 + license = licenses.gpl2; 18 + maintainers = [ maintainers.goibhniu ]; 19 + platforms = platforms.linux; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 10772 10772 10773 10773 arora = callPackage ../applications/networking/browsers/arora { }; 10774 10774 10775 + artha = callPackage ../applications/misc/artha { }; 10776 + 10775 10777 atom = callPackage ../applications/editors/atom { 10776 10778 gconf = gnome.GConf; 10777 10779 };