nixpkgs/pkgs/development/libraries/mpfi/default.nix

26 lines
941 B
Nix
Raw Normal View History

2021-04-27 16:33:48 +00:00
{lib, stdenv, fetchurl, autoreconfHook, texinfo, mpfr}:
2016-10-10 15:00:41 +00:00
stdenv.mkDerivation rec {
pname = "mpfi";
2021-01-20 08:01:42 +00:00
version = "1.5.4";
file_nr = "38111";
2016-10-10 15:00:41 +00:00
src = fetchurl {
2018-04-26 22:10:52 +00:00
# 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=";
2016-10-10 15:00:41 +00:00
};
2021-04-27 16:33:48 +00:00
nativeBuildInputs = [ autoreconfHook texinfo ];
buildInputs = [ mpfr ];
2016-10-10 15:00:41 +00:00
meta = {
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;
2016-10-10 15:00:41 +00:00
};
}