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

23 lines
904 B
Nix
Raw Normal View History

2016-10-10 17:00:41 +02:00
{stdenv, fetchurl, mpfr}:
stdenv.mkDerivation rec {
pname = "mpfi";
2018-04-27 00:10:52 +02:00
version = "1.5.3";
file_nr = "37331";
2016-10-10 17:00:41 +02:00
src = fetchurl {
2018-04-27 00:10:52 +02: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}.tar.bz2";
sha256 = "0bqr8yibl7jbrp0bw7xk1lm7nis7rv26jsz6y8ycvih8n9bx90r3";
2016-10-10 17:00:41 +02:00
};
buildInputs = [mpfr];
meta = {
inherit version;
description = ''A multiple precision interval arithmetic library based on MPFR'';
2018-04-27 00:10:52 +02:00
homepage = https://gforge.inria.fr/projects/mpfi/;
2016-10-10 17:00:41 +02:00
license = stdenv.lib.licenses.lgpl21Plus;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}