tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
Add artha 1.0.3: an offline thesaurus
Cillian de Róiste
10 years ago
cef7bccb
51cd219c
+23
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
artha
default.nix
top-level
all-packages.nix
+21
pkgs/applications/misc/artha/default.nix
···
1
1
+
{ stdenv, fetchurl, dbus_glib, gtk, pkgconfig, wordnet }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "artha-${version}";
5
5
+
version = "1.0.3";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "mirror://sourceforge/artha/1.0.3/artha-1.0.3.tar.bz2";
9
9
+
sha256 = "0qr4ihl7ma3cq82xi1fpzvf74mm9vsg0j035xvmcp3r6rmw2fycx";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ dbus_glib gtk pkgconfig wordnet ];
13
13
+
14
14
+
meta = with stdenv.lib; {
15
15
+
description = "An offline thesaurus based on WordNet";
16
16
+
homepage = http://artha.sourceforge.net;
17
17
+
license = licenses.gpl2;
18
18
+
maintainers = [ maintainers.goibhniu ];
19
19
+
platforms = platforms.linux;
20
20
+
};
21
21
+
}
+2
pkgs/top-level/all-packages.nix
···
10772
10772
10773
10773
arora = callPackage ../applications/networking/browsers/arora { };
10774
10774
10775
10775
+
artha = callPackage ../applications/misc/artha { };
10776
10776
+
10775
10777
atom = callPackage ../applications/editors/atom {
10776
10778
gconf = gnome.GConf;
10777
10779
};