mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
403c17e488
MPIR is no longer being maintained and its website no longer exists. Furthermore, flint can use GMP instead of MPIR.
54 lines
1.1 KiB
Nix
54 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";
|
|
};
|
|
}
|