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