48af15f7a5
GitOrigin-RevId: 04a2b269d8921505a2969fc9ec25c1f517f2b307
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gmp, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lean";
|
|
version = "3.28.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover-community";
|
|
repo = "lean";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-IzoFE92F559WeSUCiYZ/fx2hrsyRzgOACr3/pzJ4OOY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ gmp ];
|
|
|
|
cmakeDir = "../src";
|
|
|
|
# Running the tests is required to build the *.olean files for the core
|
|
# library.
|
|
doCheck = true;
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace $out/bin/leanpkg \
|
|
--replace "greadlink" "${coreutils}/bin/readlink"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Automatic and interactive theorem prover";
|
|
homepage = "https://leanprover.github.io/";
|
|
changelog = "https://github.com/leanprover-community/lean/blob/v${version}/doc/changes.md";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice gebner ];
|
|
};
|
|
}
|
|
|