Merge pull request #287604 from trofi/lean3-mark-broken

lean3: fix gcc-13 build failure
This commit is contained in:
Mario Rodas 2024-02-11 17:04:38 -05:00 committed by GitHub
commit f9d39fb9af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, gmp, coreutils }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, gmp, coreutils }:
stdenv.mkDerivation rec {
pname = "lean";
@ -15,6 +15,15 @@ stdenv.mkDerivation rec {
hash = "sha256-Vcsph4dTNLafeaTtVwJS8tWoWCgcP6pxF0ssZDE/YfM=";
};
patches = [
# Fix gcc-13 build failure
(fetchpatch {
name = "gcc-13.patch";
url = "https://github.com/leanprover-community/lean/commit/21d264a66d53b0a910178ae7d9529cb5886a39b6.patch";
hash = "sha256-hBm2QNFS1jdoR6LUQHLReKxMKv7kbkrkrTGJ43YnvfA=";
})
];
nativeBuildInputs = [ cmake ];
buildInputs = [ gmp ];