nixpkgs/pkgs/applications/science/logic/lean/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, gmp, coreutils }:
2016-12-08 15:29:33 +00:00
stdenv.mkDerivation rec {
pname = "lean";
2022-12-26 22:05:40 +00:00
version = "3.50.3";
2016-12-08 15:29:33 +00:00
src = fetchFromGitHub {
owner = "leanprover-community";
2016-12-08 15:29:33 +00:00
repo = "lean";
2021-05-26 14:53:55 +00:00
# lean's version string contains the commit sha1 it was built
# from. this is then used to check whether an olean file should be
# rebuilt. don't use a tag as rev because this will get replaced into
# src/githash.h.in in preConfigure.
2022-12-26 22:05:40 +00:00
rev = "855e5b74e3a52a40552e8f067169d747d48743fd";
sha256 = "sha256-RH4w7PpzC+fhqCHikXQO2pUUvWD2qrA0mVMUGxpauwE=";
2016-12-08 15:29:33 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ gmp ];
2016-12-08 15:29:33 +00:00
2020-11-04 15:32:56 +00:00
cmakeDir = "../src";
# Running the tests is required to build the *.olean files for the core
# library.
doCheck = true;
2021-05-26 14:53:55 +00:00
preConfigure = assert builtins.stringLength src.rev == 40; ''
substituteInPlace src/githash.h.in \
--subst-var-by GIT_SHA1 "${src.rev}"
substituteInPlace library/init/version.lean.in \
--subst-var-by GIT_SHA1 "${src.rev}"
'';
2020-11-04 15:32:56 +00:00
postPatch = "patchShebangs .";
2016-12-08 15:29:33 +00:00
2021-01-15 13:21:58 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
2020-05-16 09:20:00 +00:00
substituteInPlace $out/bin/leanpkg \
--replace "greadlink" "${coreutils}/bin/readlink"
'';
meta = with lib; {
2016-12-08 15:29:33 +00:00
description = "Automatic and interactive theorem prover";
2020-03-04 06:26:01 +00:00
homepage = "https://leanprover.github.io/";
2020-03-13 09:20:00 +00:00
changelog = "https://github.com/leanprover-community/lean/blob/v${version}/doc/changes.md";
2016-12-08 15:29:33 +00:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice gebner ];
};
}