Merge pull request #12443 from gebner/lean-ninja

lean: update and add wrapper for linja
This commit is contained in:
Pascal Wittmann 2016-01-17 20:00:16 +01:00
commit ff837f9288

View file

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, cmake, gmp, mpfr, luajit, boost, python
, gperftools, ninja }:
, gperftools, ninja, makeWrapper }:
stdenv.mkDerivation rec {
name = "lean-${version}";
version = "20150821";
version = "20160117";
src = fetchFromGitHub {
owner = "leanprover";
repo = "lean";
rev = "453bd2341dac51e50d9bff07d5ff6c9c3fb3ba0b";
sha256 = "1hmga5my123sra873iyqc7drj4skny4hnhsasaxjkmmdhmj1zpka";
rev = "b2554dcb8f45899ccce84f226cd67b6460442930";
sha256 = "1gr024bly92kdjky5qvcm96gn86ijakziiyrsz91h643n1iyxhms";
};
buildInputs = [ gmp mpfr luajit boost cmake python gperftools ninja ];
buildInputs = [ gmp mpfr luajit boost cmake python gperftools ninja makeWrapper ];
enableParallelBuilding = true;
preConfigure = ''
@ -22,6 +22,10 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
postInstall = ''
wrapProgram $out/bin/linja --prefix PATH : $out/bin:${ninja}/bin
'';
meta = {
description = "Automatic and interactive theorem prover";
homepage = "http://leanprover.github.io";