mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config, glib, expat
|
|
, installShellFiles }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "prevo-tools";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bpeel";
|
|
repo = "prevodb";
|
|
rev = version;
|
|
hash = "sha256-TfgsZidwXewwqGkb31Qv0SrX8wQdPaK7JQA3nB5h2bs=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix building with glib-2.82
|
|
# https://github.com/bpeel/prevodb/issues/8
|
|
(fetchpatch {
|
|
url = "https://github.com/bpeel/prevodb/commit/38474b47d0ab8ef5451997b87493f0677b8b8358.patch";
|
|
hash = "sha256-mGHwnN4TT3jiandaN+6uNttKMg0OjV9yKLSuVn3F0CA=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config installShellFiles ];
|
|
buildInputs = [ glib expat ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --bash src/prevo-completion
|
|
'';
|
|
|
|
meta = {
|
|
description =
|
|
"CLI tools for the 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 command line application prevo to query a local
|
|
ReVo database, as well as the command line tool revodb to create such a
|
|
database for this application or for the Android app of the same name.
|
|
'';
|
|
homepage = "https://github.com/bpeel/prevodb";
|
|
license = lib.licenses.gpl2Only;
|
|
mainProgram = "prevo";
|
|
maintainers = with lib.maintainers; [ das-g ehmry ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|