cbmc: fix eval
f3c863877b dropped apple-sdk < 11 and now
darwin aarch64/x66 use sdk 11.3 making the sdk override unnecessary.
This commit is contained in:
@@ -15,9 +15,6 @@
|
||||
cudd,
|
||||
fetchurl,
|
||||
nix-update-script,
|
||||
apple-sdk,
|
||||
apple-sdk_10_15,
|
||||
darwinMinVersionHook,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -51,14 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
[ cadical ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
(darwinMinVersionHook "10.15")
|
||||
]
|
||||
++ lib.optionals (stdenv.hostPlatform.isDarwin && lib.versionOlder apple-sdk.version "10.15") [
|
||||
apple-sdk_10_15
|
||||
];
|
||||
buildInputs = [ cadical ];
|
||||
|
||||
# do not download sources
|
||||
# link existing cadical instead
|
||||
|
||||
Reference in New Issue
Block a user