summary refs log tree commit diff
path: root/pkgs/tools/text/jbofihe/default.nix
blob: 111b019c3b13e49158148e754ec153b8d6d7496f (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
{ lib, stdenv, fetchFromGitHub, bison, flex, perl, }:

stdenv.mkDerivation rec {
  pname = "jbofihe";
  version = "0.43";

  src = fetchFromGitHub {
    owner = "lojban";
    repo = "jbofihe";
    rev = "v${version}";
    sha256 = "1xx7x1256sjncyzx656jl6jl546vn8zz0siymqalz6v9yf341p98";
  };

  nativeBuildInputs = [ bison flex perl ];

  doCheck = true;
  checkPhase = ''
    runHook preCheck
    (cd tests && ./run *.in)
    runHook postCheck
  '';

  meta = with lib; {
    description = "Parser & analyser for Lojban";
    homepage = "https://github.com/lojban/jbofihe";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ chkno ];
  };
}