nixpkgs/pkgs/development/coq-modules/flocq/default.nix
2019-02-15 10:03:39 +01:00

52 lines
1.3 KiB
Nix

{ stdenv, bash, which, autoconf, automake, fetchurl, coq }:
let params =
if stdenv.lib.versionAtLeast coq.coq-version "8.7" then {
version = "3.1.0";
uid = "37901";
sha256 = "02szrgz9m0ac51la1lqpiv6i2g0zbgx9gz5rp0q1g00ajldyna5c";
} else {
version = "2.6.1";
uid = "37454";
sha256 = "06msp1fwpqv6p98a3i1nnkj7ch9rcq3rm916yxq8dxf51lkghrin";
}
; in
stdenv.mkDerivation rec {
name = "coq${coq.coq-version}-flocq-${version}";
inherit (params) version;
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/file/${params.uid}/flocq-${version}.tar.gz";
inherit (params) sha256;
};
nativeBuildInputs = [ bash which autoconf automake ];
buildInputs = [ coq ] ++ (with coq.ocamlPackages; [
ocaml camlp5
]);
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 = "A floating-point formalization for the Coq system";
license = licenses.lgpl3;
maintainers = with maintainers; [ jwiegley ];
platforms = coq.meta.platforms;
};
passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" ];
};
}