coqPackages.flocq: new expression
This commit is contained in:
parent
8d8acebfbb
commit
89e68ee32e
33
pkgs/development/coq-modules/flocq/default.nix
Normal file
33
pkgs/development/coq-modules/flocq/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{stdenv, bash, which, autoconf, automake, fetchurl, coq}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "coq-flocq-${coq.coq-version}-${version}";
|
||||
version = "2.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://gforge.inria.fr/frs/download.php/file/33979/flocq-2.4.0.tar.gz;
|
||||
sha256 = "020x4nkkrvndkvp5zwb9vads8a2jh603khcwrm40yhqldgfd8zlv";
|
||||
};
|
||||
|
||||
buildInputs = [ coq.ocaml coq.camlp5 bash which autoconf automake ];
|
||||
propagatedBuildInputs = [ coq ];
|
||||
|
||||
buildPhase = ''
|
||||
${bash}/bin/bash autogen.sh
|
||||
${bash}/bin/bash configure --libdir=$out/lib/coq/${coq.coq-version}/user-contrib/Flocq
|
||||
./remake
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
./remake install
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://flocq.gforge.inria.fr/;
|
||||
description = "Flocq (Floats for Coq) is a floating-point formalization for the Coq system";
|
||||
maintainers = with maintainers; [ jwiegley ];
|
||||
platforms = coq.meta.platforms;
|
||||
};
|
||||
|
||||
}
|
@ -11670,6 +11670,8 @@ let
|
||||
|
||||
domains = callPackage ../development/coq-modules/domains {};
|
||||
|
||||
flocq = callPackage ../development/coq-modules/flocq {};
|
||||
|
||||
heq = callPackage ../development/coq-modules/heq {};
|
||||
|
||||
mathcomp = callPackage ../development/coq-modules/mathcomp {};
|
||||
|
Loading…
Reference in New Issue
Block a user