5aa4b19946
Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
37 lines
988 B
Nix
37 lines
988 B
Nix
{ stdenv, fetchFromGitHub, cmake, gmp, mpfr, python
|
|
, gperftools, ninja, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "lean2";
|
|
version = "2017-07-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover";
|
|
repo = "lean2";
|
|
rev = "34dbd6c3ae612186b8f0f80d12fbf5ae7a059ec9";
|
|
sha256 = "1xv3j487zhh1zf2b4v19xzw63s2sgjhg8d62a0kxxyknfmdf3khl";
|
|
};
|
|
|
|
buildInputs = [ gmp mpfr cmake python gperftools ninja makeWrapper ];
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
patchShebangs bin/leantags
|
|
cd src
|
|
'';
|
|
|
|
cmakeFlags = [ "-GNinja" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/linja --prefix PATH : $out/bin:${ninja}/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Automatic and interactive theorem prover (version with HoTT support)";
|
|
homepage = "http://leanprover.github.io";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice gebner ];
|
|
broken = true;
|
|
};
|
|
}
|