27 lines
613 B
Nix
27 lines
613 B
Nix
{ stdenv, cmake, python, gmp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lean-${version}";
|
|
version = "local";
|
|
|
|
# I have way too many untracked files in my checkout
|
|
src = builtins.fetchGit { url = ./.; };
|
|
|
|
nativeBuildInputs = [ cmake python ];
|
|
buildInputs = [ gmp ];
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
postConfigure = ''
|
|
patchShebangs ../../bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Automatic and interactive theorem prover";
|
|
homepage = https://leanprover.github.io/;
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|