about summary refs log tree commit diff
path: root/pkgs/development/libraries/mpfr
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2007-10-26 03:01:44 +0000
committerMichael Raskin <7c6f434c@mail.ru>2007-10-26 03:01:44 +0000
commit53a6d71842824c20a3800f2a925fcf7df3d8524e (patch)
treec5f8e942baece54d8ed56cdca67f4e46e5f3348b /pkgs/development/libraries/mpfr
parent02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361 (diff)
Added MPFR; will be needed for gfortran, that doesn't work for now.
svn path=/nixpkgs/trunk/; revision=9526
Diffstat (limited to 'pkgs/development/libraries/mpfr')
-rw-r--r--pkgs/development/libraries/mpfr/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix
new file mode 100644
index 0000000000000..c083238cca0ac
--- /dev/null
+++ b/pkgs/development/libraries/mpfr/default.nix
@@ -0,0 +1,18 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "mpfr-2.3.0";
+
+  src =
+	fetchurl {
+		url = http://www.mpfr.org/mpfr-current/mpfr-2.3.0.tar.bz2;
+		sha256 = "0j1dgpqhw21xc0clm7785jm6k04v9zsssdydvm2z3lcj9ws0v7rm";
+	};
+
+  buildInputs =[gmp];
+
+  meta = {
+    description = "
+	Multi Precision Floating arithmetic with correct Rounding.
+";
+  };
+}