lean: build olean files

This commit is contained in:
Gabriel Ebner 2020-11-04 16:32:56 +01:00
parent 81c5e31043
commit 8279979f38
1 changed files with 7 additions and 3 deletions

View File

@ -15,9 +15,13 @@ stdenv.mkDerivation rec {
buildInputs = [ gmp ]; buildInputs = [ gmp ];
enableParallelBuilding = true; enableParallelBuilding = true;
preConfigure = '' cmakeDir = "../src";
cd src
''; # Running the tests is required to build the *.olean files for the core
# library.
doCheck = true;
postPatch = "patchShebangs .";
postInstall = stdenv.lib.optionalString stdenv.isDarwin '' postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace $out/bin/leanpkg \ substituteInPlace $out/bin/leanpkg \