coqPackages.coquelicot: init at 2.1.1

Coquelicot is a Coq library for Reals.

Homepage: http://coquelicot.saclay.inria.fr/
wip/yesman
Vincent Laporte 9 years ago
parent e1f555477c
commit e182ddf008
  1. 25
      pkgs/development/coq-modules/coquelicot/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -0,0 +1,25 @@
{ stdenv, fetchurl, which, coq, ssreflect }:
stdenv.mkDerivation {
name = "coq${coq.coq-version}-coquelicot-2.1.1";
src = fetchurl {
url = https://gforge.inria.fr/frs/download.php/file/35429/coquelicot-2.1.1.tar.gz;
sha256 = "1wxds73h26q03r2xiw8shplh97rsbim2i2s0r7af0fa490bp44km";
};
nativeBuildInputs = [ which ];
buildInputs = [ coq ];
propagatedBuildInputs = [ ssreflect ];
configureFlags = "--libdir=$out/lib/coq/${coq.coq-version}/user-contrib/Coquelicot";
buildPhase = "./remake";
installPhase = "./remake install";
meta = {
homepage = http://coquelicot.saclay.inria.fr/;
description = "A Coq library for Reals";
license = stdenv.lib.licenses.lgpl3;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (coq.meta) platforms;
};
}

@ -14993,6 +14993,8 @@ let
coqeal = callPackage ../development/coq-modules/coqeal {};
coquelicot = callPackage ../development/coq-modules/coquelicot {};
domains = callPackage ../development/coq-modules/domains {};
fiat = callPackage ../development/coq-modules/fiat {};
@ -15027,6 +15029,8 @@ let
coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {};
coquelicot = callPackage ../development/coq-modules/coquelicot {};
flocq = callPackage ../development/coq-modules/flocq {};
mathcomp = callPackage ../development/coq-modules/mathcomp { };

Loading…
Cancel
Save