mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28 lines
770 B
Nix
28 lines
770 B
Nix
{stdenv, fetchFromGitHub, mpir, gmp, mpfr, flint}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "arb";
|
|
version = "2.17.0";
|
|
src = fetchFromGitHub {
|
|
owner = "fredrik-johansson";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "05lpy3hkl5f8ik19aw40cqydrb932xaf2n8hbq9ib5dnk7f010p1";
|
|
};
|
|
buildInputs = [mpir gmp mpfr flint];
|
|
configureFlags = [
|
|
"--with-gmp=${gmp}"
|
|
"--with-mpir=${mpir}"
|
|
"--with-mpfr=${mpfr}"
|
|
"--with-flint=${flint}"
|
|
];
|
|
doCheck = true;
|
|
meta = with stdenv.lib; {
|
|
inherit version;
|
|
description = ''A library for arbitrary-precision interval arithmetic'';
|
|
homepage = "http://arblib.org/";
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
maintainers = teams.sage.members;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|