mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
72c16839ea
Changes: https://www.mpfr.org/mpfr-4.1.0/#fixed While at it added trivial updater script.
75 lines
2.1 KiB
Nix
75 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, gmp
|
|
, writeScript
|
|
}:
|
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
# files.
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.1.1";
|
|
pname = "mpfr";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://www.mpfr.org/${pname}-${version}/${pname}-${version}.tar.xz"
|
|
"mirror://gnu/mpfr/${pname}-${version}.tar.xz"
|
|
];
|
|
hash = "sha256-/9GVvVZ9uv/DuYsj/QCq0FN2gMmJYXHkT+P/eeKKwz0=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "doc" "info" ];
|
|
|
|
strictDeps = true;
|
|
# mpfr.h requires gmp.h
|
|
propagatedBuildInputs = [ gmp ];
|
|
|
|
configureFlags =
|
|
lib.optional stdenv.hostPlatform.isSunOS "--disable-thread-safe" ++
|
|
lib.optional stdenv.hostPlatform.is64bit "--with-pic";
|
|
|
|
doCheck = true; # not cross;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
updateScript = writeScript "update-mpfr" ''
|
|
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl pcre common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
# Expect the text in format of '<title>GNU MPFR version 4.1.1</title>'
|
|
new_version="$(curl -s https://www.mpfr.org/mpfr-current/ |
|
|
pcregrep -o1 '<title>GNU MPFR version ([0-9.]+)</title>')"
|
|
update-source-version ${pname} "$new_version"
|
|
'';
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.mpfr.org/";
|
|
description = "Library for multiple-precision floating-point arithmetic";
|
|
|
|
longDescription = ''
|
|
The GNU MPFR library is a C library for multiple-precision
|
|
floating-point computations with correct rounding. MPFR is
|
|
based on the GMP multiple-precision library.
|
|
|
|
The main goal of MPFR is to provide a library for
|
|
multiple-precision floating-point computation which is both
|
|
efficient and has a well-defined semantics. It copies the good
|
|
ideas from the ANSI/IEEE-754 standard for double-precision
|
|
floating-point arithmetic (53-bit mantissa).
|
|
'';
|
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|