dd03c2d78b
* arb: 2.16.0 -> 2.17.0 (#71489) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/arb/versions * arb: add meta.homepage
28 lines
788 B
Nix
28 lines
788 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 = with maintainers; [ raskin timokau ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|