depot/third_party/nixpkgs/pkgs/development/libraries/flint/default.nix

63 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
gmp,
mpfr,
ntl,
openblas ? null,
blas,
lapack,
withBlas ? true,
}:
assert
withBlas
-> openblas != null && blas.implementation == "openblas" && lapack.implementation == "openblas";
stdenv.mkDerivation rec {
pname = "flint";
version = "2.9.0";
src = fetchurl {
url = "https://www.flintlib.org/flint-${version}.tar.gz";
sha256 = "sha256-L8CQ1RAzyTII5sENQGOXpTyYOuU0O5WOsl9ypXpM52o=";
};
buildInputs =
[
gmp
mpfr
ntl
]
++ lib.optionals withBlas [
openblas
];
propagatedBuildInputs = [
mpfr # flint.h includes mpfr.h
];
configureFlags =
[
"--with-gmp=${gmp}"
"--with-mpfr=${mpfr}"
"--with-ntl=${ntl}"
]
++ lib.optionals withBlas [
"--with-blas=${openblas}"
];
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
description = "Fast Library for Number Theory";
license = licenses.gpl2Plus;
maintainers = teams.sage.members;
platforms = platforms.unix;
homepage = "https://www.flintlib.org/";
downloadPage = "https://www.flintlib.org/downloads.html";
};
}