504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, git
|
|
, gmp
|
|
, perl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lean4";
|
|
version = "4.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover";
|
|
repo = "lean4";
|
|
rev = "v${version}";
|
|
hash = "sha256-lU67wjl6yJP2r97lHYxrJqn+JhqMcBIbz/+qlCgY3/o=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/CMakeLists.txt \
|
|
--replace 'set(GIT_SHA1 "")' 'set(GIT_SHA1 "${src.rev}")'
|
|
|
|
# Remove tests that fails in sandbox.
|
|
# It expects `sourceRoot` to be a git repository.
|
|
rm -rf src/lake/examples/git/
|
|
'';
|
|
|
|
preConfigure = ''
|
|
patchShebangs stage0/src/bin/ src/bin/
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
gmp
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
perl
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_GITHASH=OFF"
|
|
"-DINSTALL_LICENSE=OFF"
|
|
];
|
|
|
|
# Work around https://github.com/NixOS/nixpkgs/issues/166205.
|
|
env = lib.optionalAttrs stdenv.cc.isClang {
|
|
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Automatic and interactive theorem prover";
|
|
homepage = "https://leanprover.github.io/";
|
|
changelog = "https://github.com/leanprover/lean4/blob/${src.rev}/RELEASES.md";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ marsam ];
|
|
mainProgram = "lean";
|
|
};
|
|
}
|