chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / prevo-tools / package.nix
blob741e6e80d87c398105ef4a5e2988464cc14b048d
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     hash = "sha256-TfgsZidwXewwqGkb31Qv0SrX8wQdPaK7JQA3nB5h2bs=";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config installShellFiles ];
16   buildInputs = [ glib expat ];
18   postInstall = ''
19     installShellCompletion --bash src/prevo-completion
20   '';
22   meta = {
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 = lib.licenses.gpl2Only;
35     mainProgram = "prevo";
36     maintainers = with lib.maintainers; [ das-g ehmry ];
37     platforms = lib.platforms.unix;
38   };