blob: e3f42c153ebb7286b649a9046f08d7fd2308ba14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ lib, stdenv, autoreconfHook, fetchurl, dbus-glib, gtk2, pkg-config, wordnet }:
stdenv.mkDerivation rec {
pname = "artha";
version = "1.0.5";
src = fetchurl {
url = "mirror://sourceforge/artha/${version}/artha-${version}.tar.bz2";
sha256 = "034r7vfk5y7705k068cdlq52ikp6ip10w6047a5zjdakbn55c3as";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ dbus-glib gtk2 wordnet ];
meta = with lib; {
description = "Offline thesaurus based on WordNet";
homepage = "https://artha.sourceforge.net";
license = licenses.gpl2;
maintainers = [ ];
platforms = platforms.linux;
mainProgram = "artha";
};
}
|