2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, gmp, mpfr, boost }:
|
2015-05-22 07:12:52 +00:00
|
|
|
|
2021-11-07 13:50:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gappa";
|
|
|
|
version = "1.4.0";
|
2015-05-22 07:12:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 13:50:48 +00:00
|
|
|
url = "https://gforge.inria.fr/frs/download.php/file/38436/gappa-${version}.tar.gz";
|
2021-07-11 17:30:45 +00:00
|
|
|
sha256 = "12x42z901pr05ldmparqdi8sq9s7fxbavhzk2dbq3l6hy247dwbb";
|
2015-05-22 07:12:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp mpfr boost.dev ];
|
|
|
|
|
|
|
|
buildPhase = "./remake";
|
|
|
|
installPhase = "./remake install";
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://gappa.gforge.inria.fr/";
|
2015-05-22 07:12:52 +00:00
|
|
|
description = "Verifying and formally proving properties on numerical programs dealing with floating-point or fixed-point arithmetic";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gappa";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = with lib.licenses; [ cecill20 gpl2 ];
|
|
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
|
|
|
platforms = lib.platforms.all;
|
2015-05-22 07:12:52 +00:00
|
|
|
};
|
|
|
|
}
|