jbofihe: Init at 0.43
This commit is contained in:
parent
fbfb79400a
commit
462730dd7f
2 changed files with 32 additions and 0 deletions
pkgs
29
pkgs/tools/text/jbofihe/default.nix
Normal file
29
pkgs/tools/text/jbofihe/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6478,6 +6478,9 @@ in
|
||||||
ispell = callPackage ../tools/text/ispell {};
|
ispell = callPackage ../tools/text/ispell {};
|
||||||
|
|
||||||
iodash = callPackage ../development/libraries/iodash { };
|
iodash = callPackage ../development/libraries/iodash { };
|
||||||
|
|
||||||
|
jbofihe = callPackage ../tools/text/jbofihe {};
|
||||||
|
|
||||||
jumanpp = callPackage ../tools/text/jumanpp {};
|
jumanpp = callPackage ../tools/text/jumanpp {};
|
||||||
|
|
||||||
jump = callPackage ../tools/system/jump {};
|
jump = callPackage ../tools/system/jump {};
|
||||||
|
|
Loading…
Reference in a new issue