Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / prevo / tools.nix
blob508f085bb44b7c52f4908fc927a78291876a1327
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat
2 , installShellFiles }:
4 stdenv.mkDerivation rec {
5   pname = "prevo-tools";
6   version = "0.2";
8   src = fetchFromGitHub {
9     owner = "bpeel";
10     repo = "prevodb";
11     rev = version;
12     sha256 = "1fyrc4g9qdq04nxs4g8x0krxfani5xady6v9m0qfqpbh4xk2ry2d";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config installShellFiles ];
16   buildInputs = [ glib expat ];
18   postInstall = ''
19     installShellCompletion --bash src/prevo-completion
20   '';
22   meta = with lib; {
23     description =
24       "CLI tools for the offline version of the Esperanto dictionary Reta Vortaro";
25     longDescription = ''
26       PReVo is the "portable" ReVo, i.e., the offline version
27       of the Esperanto dictionary Reta Vortaro.
29       This package provides the command line application prevo to query a local
30       ReVo database, as well as the command line tool revodb to create such a
31       database for this application or for the Android app of the same name.
32     '';
33     homepage = "https://github.com/bpeel/prevodb";
34     license = licenses.gpl2Only;
35     maintainers = [ maintainers.das-g ];
36     platforms = platforms.linux;
37   };