1{
2 lib,
3 stdenv,
4 autoreconfHook,
5 fetchurl,
6 dbus-glib,
7 gtk2,
8 pkg-config,
9 wordnet,
10}:
11
12stdenv.mkDerivation rec {
13 pname = "artha";
14 version = "1.0.5";
15
16 src = fetchurl {
17 url = "mirror://sourceforge/artha/${version}/artha-${version}.tar.bz2";
18 sha256 = "034r7vfk5y7705k068cdlq52ikp6ip10w6047a5zjdakbn55c3as";
19 };
20
21 nativeBuildInputs = [
22 autoreconfHook
23 pkg-config
24 ];
25 buildInputs = [
26 dbus-glib
27 gtk2
28 wordnet
29 ];
30
31 meta = with lib; {
32 description = "Offline thesaurus based on WordNet";
33 homepage = "https://artha.sourceforge.net";
34 license = licenses.gpl2;
35 maintainers = [ ];
36 platforms = platforms.linux;
37 mainProgram = "artha";
38 };
39}