9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{lib, stdenv, fetchurl, autoconf, automake, libtool, texinfo, mpfr}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpfi";
|
|
version = "1.5.4";
|
|
file_nr = "38111";
|
|
|
|
src = fetchurl {
|
|
# NOTE: the file_nr is whats important here. The actual package name (including the version)
|
|
# is ignored. To find out the correct file_nr, go to https://gforge.inria.fr/projects/mpfi/
|
|
# and click on Download in the section "Latest File Releases".
|
|
url = "https://gforge.inria.fr/frs/download.php/file/${file_nr}/mpfi-${version}.tgz";
|
|
sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool texinfo ];
|
|
buildInputs = [ mpfr ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = {
|
|
inherit version;
|
|
description = "A multiple precision interval arithmetic library based on MPFR";
|
|
homepage = "https://gforge.inria.fr/projects/mpfi/";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = [lib.maintainers.raskin];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|