nixpkgs/pkgs/applications/misc/artha/default.nix

27 lines
689 B
Nix
Raw Normal View History

{ 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 {
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";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
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
];
meta = with lib; {
2015-08-26 23:50:36 +01:00
description = "An offline thesaurus based on WordNet";
homepage = "http://artha.sourceforge.net";
2015-08-26 23:50:36 +01:00
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}