biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / octave-modules / interval / default.nix
blob8cf9d555678c0c093546f169448fffb2728d806b
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 , mpfr
5 }:
7 buildOctavePackage rec {
8   pname = "interval";
9   version = "3.2.1";
11   src = fetchurl {
12     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13     sha256 = "sha256-OOUmQnN1cTIpqz2Gpf4/WghVB0fYQgVBcG/eqQk/3Og=";
14   };
16   propagatedBuildInputs = [
17     mpfr
18   ];
20   meta = with lib; {
21     homepage = "https://octave.sourceforge.io/interval/index.html";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ KarlJoad ];
24     description = "Interval arithmetic to evaluate functions over subsets of their domain";
25     longDescription = ''
26        The interval package for real-valued interval arithmetic allows one to
27        evaluate functions over subsets of their domain. All results are verified,
28        because interval computations automatically keep track of any errors.
30        These concepts can be used to handle uncertainties, estimate arithmetic
31        errors and produce reliable results. Also it can be applied to
32        computer-assisted proofs, constraint programming, and verified computing.
34        The implementation is based on interval boundaries represented by
35        binary64 numbers and is conforming to IEEE Std 1788-2015, IEEE standard
36        for interval arithmetic.
37     '';
38   };