2016-12-18 12:25:24 +03:00
|
|
|
{ stdenv, fetchurl, omake, ocaml, flex, bison }:
|
2015-02-21 10:41:37 +03:00
|
|
|
|
2018-03-15 20:37:55 +03:00
|
|
|
let
|
|
|
|
version = "2.1";
|
|
|
|
in
|
|
|
|
|
2015-02-21 10:41:37 +03:00
|
|
|
stdenv.mkDerivation {
|
2019-08-14 00:52:01 +03:00
|
|
|
pname = "teyjus";
|
|
|
|
inherit version;
|
2015-02-21 10:41:37 +03:00
|
|
|
|
2016-12-18 12:25:24 +03:00
|
|
|
src = fetchurl {
|
2018-03-15 20:37:55 +03:00
|
|
|
url = "https://github.com/teyjus/teyjus/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0393wpg8v1vvarqy2xh4fdmrwlrl6jaj960kql7cq79mb9p3m269";
|
2015-02-21 10:41:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./fix-lex-to-flex.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ omake ocaml flex bison ];
|
|
|
|
|
2016-02-26 20:38:15 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-25 05:20:27 +03:00
|
|
|
|
2015-02-21 10:41:37 +03:00
|
|
|
buildPhase = "omake all";
|
|
|
|
|
|
|
|
checkPhase = "omake check";
|
|
|
|
|
|
|
|
installPhase = "mkdir -p $out/bin && cp tj* $out/bin";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An efficient implementation of the Lambda Prolog language";
|
2017-10-27 02:44:19 +03:00
|
|
|
homepage = https://github.com/teyjus/teyjus;
|
2015-02-21 10:41:37 +03:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|