about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/pr/prevo-data/package.nix
blob: c73af66dd69c03fd3578153dd00dd7af3929538a (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, stdenv, fetchFromGitHub, prevo-tools }:

stdenv.mkDerivation {
  pname = "prevo-data";
  version = "2020-03-08";

  src = fetchFromGitHub {
    owner = "bpeel";
    repo = "revo";
    rev = "1e8d7197c0bc831e2127909e77e64dfc26906bdd";
    sha256 = "1ldhzpi3d5cbssv8r7acsn7qwxcl8qpqi8ywpsp7cbgx3w7hhkyz";
  };

  nativeBuildInputs = [ prevo-tools ];

  dontUnpack = true;

  buildPhase = ''
    prevodb -s -i $src -o prevo.db
  '';

  installPhase = ''
    mkdir -p $out/share/prevo
    cp prevo.db $out/share/prevo/
  '';

  meta = {
    description =
      "data for offline version of the Esperanto dictionary Reta Vortaro";
    longDescription = ''
      PReVo is the "portable" ReVo, i.e., the offline version
      of the Esperanto dictionary Reta Vortaro.

      This package provides the ReVo database for the prevo command line application.
    '';
    homepage = "https://github.com/bpeel/revo";
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ das-g ehmry ];
  };
}