Merge pull request #334494 from bakaq/scryer_dependencies

scryer-prolog: Remove gmp, libmpc and mprf
This commit is contained in:
Peder Bergebakken Sundt 2024-08-18 00:40:54 +02:00 committed by GitHub
commit 642fc9ff66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,9 +3,6 @@
, fetchFromGitHub
, pkg-config
, openssl
, gmp
, libmpc
, mpfr
, stdenv
, darwin
}:
@ -25,7 +22,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl gmp libmpc mpfr ]
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.SystemConfiguration
];