2016-12-18 01:25:24 -08:00
|
|
|
{ stdenv, fetchurl, omake, ocaml, flex, bison }:
|
2015-02-20 23:41:37 -08:00
|
|
|
|
2018-03-15 10:37:55 -07:00
|
|
|
let
|
|
|
|
version = "2.1";
|
|
|
|
in
|
|
|
|
|
2015-02-20 23:41:37 -08:00
|
|
|
stdenv.mkDerivation {
|
2018-03-15 10:37:55 -07:00
|
|
|
name = "teyjus-${version}";
|
2015-02-20 23:41:37 -08:00
|
|
|
|
2016-12-18 01:25:24 -08:00
|
|
|
src = fetchurl {
|
2018-03-15 10:37:55 -07:00
|
|
|
url = "https://github.com/teyjus/teyjus/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0393wpg8v1vvarqy2xh4fdmrwlrl6jaj960kql7cq79mb9p3m269";
|
2015-02-20 23:41:37 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./fix-lex-to-flex.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ omake ocaml flex bison ];
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-24 18:20:27 -08:00
|
|
|
|
2015-02-20 23:41:37 -08: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-26 16:44:19 -07:00
|
|
|
homepage = https://github.com/teyjus/teyjus;
|
2015-02-20 23:41:37 -08:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|