Adds gappa 1.2.0

Gappa is a tool intended to help verifying and formally proving
properties on numerical programs dealing with floating-point or
fixed-point arithmetic.

Homepage: http://gappa.gforge.inria.fr/

+25
+23
pkgs/applications/science/logic/gappa/default.nix
··· 1 + { stdenv, fetchurl, gmp, mpfr, boost }: 2 + 3 + stdenv.mkDerivation { 4 + name = "gappa-1.2"; 5 + 6 + src = fetchurl { 7 + url = https://gforge.inria.fr/frs/download.php/file/34787/gappa-1.2.0.tar.gz; 8 + sha256 = "03hfzmaf5jm54sjpbks20q7qixpmagrfbnyyc276vgmiyslk4dkh"; 9 + }; 10 + 11 + buildInputs = [ gmp mpfr boost.dev ]; 12 + 13 + buildPhase = "./remake"; 14 + installPhase = "./remake install"; 15 + 16 + meta = { 17 + homepage = http://gappa.gforge.inria.fr/; 18 + description = "Verifying and formally proving properties on numerical programs dealing with floating-point or fixed-point arithmetic"; 19 + license = with stdenv.lib.licenses; [ cecill20 gpl2 ]; 20 + maintainers = with stdenv.lib.maintainers; [ vbgl ]; 21 + platforms = stdenv.lib.platforms.all; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 13878 13878 }; 13879 13879 }; 13880 13880 13881 + gappa = callPackage ../applications/science/logic/gappa { }; 13882 + 13881 13883 ginac = callPackage ../applications/science/math/ginac { }; 13882 13884 13883 13885 hol = callPackage ../applications/science/logic/hol { };