59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gmp,
|
|
flint,
|
|
mpfr,
|
|
libmpc,
|
|
withShared ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "symengine";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "symengine";
|
|
repo = "symengine";
|
|
rev = "v${version}";
|
|
hash = "sha256-hMTndwIXTqf3cxKZdnn38SFvZLEb48k1Lvm5/hW7U8k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
gmp
|
|
flint
|
|
mpfr
|
|
libmpc
|
|
];
|
|
|
|
cmakeFlags =
|
|
[
|
|
"-DWITH_FLINT=ON"
|
|
"-DINTEGER_CLASS=flint"
|
|
"-DWITH_SYMENGINE_THREAD_SAFE=yes"
|
|
"-DWITH_MPC=yes"
|
|
"-DBUILD_FOR_DISTRIBUTION=yes"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
|
|
# error: unrecognized instruction mnemonic, did you mean: bit, cnt, hint, ins, not?
|
|
"-DBUILD_TESTS=OFF"
|
|
]
|
|
++ lib.optionals withShared [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Fast symbolic manipulation library";
|
|
homepage = "https://github.com/symengine/symengine";
|
|
platforms = platforms.unix ++ platforms.windows;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
|
|
}
|