mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
flint: remove mpir dependency
MPIR is no longer being maintained and its website no longer exists. Furthermore, flint can use GMP instead of MPIR.
This commit is contained in:
parent
997cc15602
commit
403c17e488
@ -2,7 +2,6 @@
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, gmp
|
||||
, mpir
|
||||
, mpfr
|
||||
, ntl
|
||||
, openblas ? null, blas, lapack
|
||||
@ -22,7 +21,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
mpir
|
||||
mpfr
|
||||
ntl
|
||||
] ++ lib.optionals withBlas [
|
||||
@ -35,7 +33,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags = [
|
||||
"--with-gmp=${gmp}"
|
||||
"--with-mpir=${mpir}"
|
||||
"--with-mpfr=${mpfr}"
|
||||
"--with-ntl=${ntl}"
|
||||
] ++ lib.optionals withBlas [
|
||||
|
Loading…
Reference in New Issue
Block a user