2015-09-13 16:01:04 +00:00
|
|
|
{ stdenv, fetchsvn, writeScript, ocaml, camlp5 }:
|
2010-02-15 11:00:02 +00:00
|
|
|
|
2011-12-16 07:44:29 +00:00
|
|
|
let
|
2011-05-21 11:18:35 +00:00
|
|
|
start_script = ''
|
|
|
|
#!/bin/sh
|
|
|
|
cd "$out/lib/hol_light"
|
2014-04-27 18:25:19 +00:00
|
|
|
exec ${ocaml}/bin/ocaml -I \`${camlp5}/bin/camlp5 -where\` -init make.ml
|
2011-05-21 11:18:35 +00:00
|
|
|
'';
|
2011-12-16 07:44:29 +00:00
|
|
|
in
|
2014-09-16 14:55:56 +00:00
|
|
|
|
2014-04-27 18:25:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hol_light-${version}";
|
2015-09-01 14:30:27 +00:00
|
|
|
version = "244";
|
2011-12-16 07:44:29 +00:00
|
|
|
|
|
|
|
src = fetchsvn {
|
|
|
|
url = http://hol-light.googlecode.com/svn/trunk;
|
2014-04-27 18:25:19 +00:00
|
|
|
rev = version;
|
2015-09-01 14:30:27 +00:00
|
|
|
sha256 = "1qzb48j7zbx7c327ixmvq2k0ap7y6fqvwal0195chfxvhs858lfq";
|
2011-12-16 07:44:29 +00:00
|
|
|
};
|
|
|
|
|
2015-09-13 16:01:04 +00:00
|
|
|
buildInputs = [ ocaml camlp5 ];
|
2010-09-15 21:41:18 +00:00
|
|
|
|
2015-09-23 17:04:51 +00:00
|
|
|
patches = [ ./Makefile.patch ];
|
|
|
|
|
2011-05-21 11:18:35 +00:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/lib/hol_light" "$out/bin"
|
2011-05-21 11:18:35 +00:00
|
|
|
cp -a . $out/lib/hol_light
|
|
|
|
echo "${start_script}" > "$out/bin/hol_light"
|
|
|
|
chmod a+x "$out/bin/hol_light"
|
2010-02-15 11:00:02 +00:00
|
|
|
'';
|
2011-05-21 11:18:35 +00:00
|
|
|
|
2014-09-16 14:55:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Interactive theorem prover based on Higher-Order Logic";
|
2014-04-27 18:25:19 +00:00
|
|
|
homepage = http://www.cl.cam.ac.uk/~jrh13/hol-light/;
|
2014-09-16 14:55:56 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2014-09-30 08:41:02 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice z77z vbgl ];
|
2010-02-15 11:00:02 +00:00
|
|
|
};
|
|
|
|
}
|