nixpkgs/pkgs/development/libraries/arb/default.nix

40 lines
739 B
Nix
Raw Normal View History

2021-01-19 03:44:47 +00:00
{ lib
, stdenv
, fetchFromGitHub
, mpir
, gmp
, mpfr
, flint
}:
2021-03-07 14:46:04 +00:00
2016-10-10 18:01:44 +00:00
stdenv.mkDerivation rec {
pname = "arb";
2021-01-19 03:44:47 +00:00
version = "2.19.0";
2021-03-07 14:46:04 +00:00
2016-10-10 18:01:44 +00:00
src = fetchFromGitHub {
owner = "fredrik-johansson";
2019-09-08 23:38:31 +00:00
repo = pname;
rev = version;
2021-01-19 03:44:47 +00:00
sha256 = "sha256-J/LQVZ8gmssazE7ru89EtvW6cVjaLEHgUHuwjW1nuOE=";
2016-10-10 18:01:44 +00:00
};
2021-03-07 14:46:04 +00:00
buildInputs = [ mpir gmp mpfr flint ];
2018-04-22 21:13:05 +00:00
configureFlags = [
"--with-gmp=${gmp}"
"--with-mpir=${mpir}"
"--with-mpfr=${mpfr}"
"--with-flint=${flint}"
];
2021-03-07 14:46:04 +00:00
2018-04-22 21:13:05 +00:00
doCheck = true;
2021-03-07 14:46:04 +00:00
meta = with lib; {
description = "A library for arbitrary-precision interval arithmetic";
homepage = "https://arblib.org/";
2021-03-07 14:46:04 +00:00
license = licenses.lgpl21Plus;
maintainers = teams.sage.members;
2021-03-07 14:46:04 +00:00
platforms = platforms.unix;
2016-10-10 18:01:44 +00:00
};
}