mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
scryer-prolog: Remove gmp, libmpc and mprf
Since 0.9.3 Scryer Prolog uses the Rust crate dashu to do arbitrary precision arithmetic, and so doesn't need these dependencies anymore.
This commit is contained in:
parent
e7df119289
commit
d4e8257c56
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue