2009-11-05 16:08:12 +01:00
|
|
|
# TODO:
|
2011-04-05 13:59:25 +02:00
|
|
|
# - coq needs to be invoked with the explicit path to the ssreflect theory
|
|
|
|
# e.g. coqide -R ~/.nix-profile/lib/coq/user-contrib/ ''
|
2009-11-05 16:08:12 +01:00
|
|
|
|
|
|
|
{stdenv, fetchurl, ocaml, camlp5, coq}:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "ssreflect";
|
2011-04-05 13:59:25 +02:00
|
|
|
version = "1.3pl1";
|
2009-11-05 16:08:12 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
webpage = http://www.msr-inria.inria.fr/Projects/math-components;
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-04-05 13:59:25 +02:00
|
|
|
url = "${webpage}/${name}.tar.gz";
|
|
|
|
sha256 = "0ykrhqb68aanl5d4dmn0vnx8m34gg0jsbdhwx2852rqi7r00b9ri";
|
2009-11-05 16:08:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml camlp5 coq ];
|
|
|
|
|
|
|
|
# this fails
|
|
|
|
/*
|
|
|
|
postBuild = ''
|
|
|
|
cd src
|
|
|
|
coqmktop -ide -opt ssreflect.cmx -o ../bin/ssrcoqide
|
|
|
|
'';
|
|
|
|
*/
|
|
|
|
|
2011-04-05 13:59:25 +02:00
|
|
|
installPhase = ''
|
|
|
|
COQLIB=$out/lib/coq make -f Makefile.coq install -e
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2009-11-05 16:08:12 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Small Scale Reflection extension for Coq";
|
|
|
|
longDescription = ''
|
|
|
|
Small Scale Reflection (ssreflect) is an extension of the Coq Theorem
|
|
|
|
Prover which enable a formal proof methodology based on the pervasive
|
|
|
|
use of computation with symbolic representation
|
|
|
|
'';
|
|
|
|
homepage = webpage;
|
|
|
|
license = "CeCILL B FREE SOFTWARE LICENSE or CeCILL FREE SOFTWARE LICENSE";
|
|
|
|
};
|
|
|
|
}
|