2021-01-15 05:21:58 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkgconfig, ocaml, opaline }:
|
2014-09-15 13:47:37 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ott";
|
2020-06-30 03:50:17 -07:00
|
|
|
version = "0.31";
|
2014-09-15 13:47:37 -07:00
|
|
|
|
2017-12-09 23:49:17 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ott-lang";
|
|
|
|
repo = "ott";
|
|
|
|
rev = version;
|
2020-06-30 03:50:17 -07:00
|
|
|
sha256 = "0l81126i2qkz11fs5yrjdgymnqgjcs5avb7f951h61yh1s68jpnn";
|
2014-09-15 13:47:37 -07:00
|
|
|
};
|
|
|
|
|
2020-09-07 22:27:08 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig opaline ];
|
2017-12-09 23:49:17 -08:00
|
|
|
buildInputs = [ ocaml ];
|
2014-09-15 13:47:37 -07:00
|
|
|
|
2020-09-07 22:27:08 -07:00
|
|
|
installTargets = "ott.install";
|
2014-09-15 13:47:37 -07:00
|
|
|
|
2021-01-05 11:00:24 -08:00
|
|
|
postInstall = ''
|
|
|
|
opaline -prefix $out
|
|
|
|
''
|
|
|
|
# There is `emacsPackages.ott-mode` for this now.
|
|
|
|
+ ''
|
|
|
|
rm -r $out/share/emacs
|
|
|
|
'';
|
2014-09-15 13:47:37 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "A tool for the working semanticist";
|
2014-09-15 13:47:37 -07:00
|
|
|
longDescription = ''
|
|
|
|
Ott is a tool for writing definitions of programming languages and
|
|
|
|
calculi. It takes as input a definition of a language syntax and
|
|
|
|
semantics, in a concise and readable ASCII notation that is close to
|
|
|
|
what one would write in informal mathematics. It generates LaTeX to
|
|
|
|
build a typeset version of the definition, and Coq, HOL, and Isabelle
|
|
|
|
versions of the definition. Additionally, it can be run as a filter,
|
|
|
|
taking a LaTeX/Coq/Isabelle/HOL source file with embedded (symbolic)
|
|
|
|
terms of the defined language, parsing them and replacing them by
|
|
|
|
target-system terms.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.cl.cam.ac.uk/~pes20/ott";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ jwiegley ];
|
|
|
|
platforms = lib.platforms.unix;
|
2014-09-15 13:47:37 -07:00
|
|
|
};
|
|
|
|
}
|