f0a1ab78b4
* Add setupHook for meson/ninja build * libhttpseverywhere: Use meson/ninja setupHooks * jamomacore: Remove superfluous ninja buildInput * Remove obsolete ninja buildPhases These are all handled by ninja's setup hook. * lean2, xcbuild: fix build with ninja setup hook Ninja is a runtime dependency here. However, cmake can generate Ninja build files as well to satisfy the setup hook. * qtwebengine: fix build with ninja setup hook
37 lines
990 B
Nix
37 lines
990 B
Nix
{ stdenv, fetchFromGitHub, cmake, gmp, mpfr, boost, python
|
|
, gperftools, ninja, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lean2-${version}";
|
|
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 ];
|
|
};
|
|
}
|