Skip to content

Commit

Permalink
Merge pull request #39346 from timokau/arb-2.13.0
Browse files Browse the repository at this point in the history
arb: 2.8.1 -> 2.13.0
  • Loading branch information
Mic92 committed Apr 22, 2018
2 parents 12e3bea + 1dbdffa commit cf540dd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/development/libraries/arb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "arb";
version = "2.8.1";
version = "2.13.0";
src = fetchFromGitHub {
owner = "fredrik-johansson";
repo = "${pname}";
rev = "${version}";
sha256 = "15phk71ci9rr32aqznpkd2b993wjahsgliilkg4mnxsr86nwdf6x";
sha256 = "1fl9gmxf6c1cphk5r8jbys5pywj2rfm705kv0055i0aqc6hrv303";
};
buildInputs = [mpir gmp mpfr flint];
configureFlags = "--with-gmp=${gmp} --with-mpir=${mpir} --with-mpfr=${mpfr} --with-flint=${flint}";
configureFlags = [
"--with-gmp=${gmp}"
"--with-mpir=${mpir}"
"--with-mpfr=${mpfr}"
"--with-flint=${flint}"
];
doCheck = true;
meta = {
inherit version;
description = ''A library for arbitrary-precision interval arithmetic'';
Expand Down

0 comments on commit cf540dd

Please sign in to comment.