mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
lean4, leanPackages.lean4: fix darwin build (#528202)
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
lib,
|
||||
stdenv,
|
||||
cmake,
|
||||
cctools,
|
||||
fetchFromGitHub,
|
||||
git,
|
||||
gmp,
|
||||
@@ -67,7 +68,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
pkg-config
|
||||
makeWrapper
|
||||
leangz # Provides leantar
|
||||
];
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools.libtool ];
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
stdenv,
|
||||
symlinkJoin,
|
||||
cmake,
|
||||
cctools,
|
||||
fetchFromGitHub,
|
||||
git,
|
||||
gmp,
|
||||
@@ -75,7 +76,8 @@ let
|
||||
cmake
|
||||
leangz
|
||||
pkg-config
|
||||
];
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools.libtool ];
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
|
||||
Reference in New Issue
Block a user