2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, fetchurl, dbus-glib, gtk2, pkg-config, wordnet }:
|
2015-08-26 23:50:36 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "artha";
|
2015-08-26 23:50:36 +01:00
|
|
|
version = "1.0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/artha/1.0.3/artha-1.0.3.tar.bz2";
|
|
|
|
sha256 = "0qr4ihl7ma3cq82xi1fpzvf74mm9vsg0j035xvmcp3r6rmw2fycx";
|
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ dbus-glib gtk2 wordnet ];
|
2015-08-26 23:50:36 +01:00
|
|
|
|
2019-01-04 19:33:50 +00:00
|
|
|
patches = [
|
|
|
|
./gio-underlink.patch
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-08-26 23:50:36 +01:00
|
|
|
description = "An offline thesaurus based on WordNet";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://artha.sourceforge.net";
|
2015-08-26 23:50:36 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|