1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/mpfr/default.nix

18 lines
341 B
Nix
Raw Normal View History

args: with args;
stdenv.mkDerivation {
name = "mpfr-2.3.0";
src = fetchurl {
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
};
buildInputs =[gmp];
meta = {
description = "
Multi Precision Floating arithmetic with correct Rounding.
";
};
}