b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
20 lines
656 B
Nix
20 lines
656 B
Nix
{ lib, mkCoqDerivation, coq, interval, compcert, flocq, bignums, version ? null }:
|
|
|
|
with lib; mkCoqDerivation {
|
|
pname = "vcfloat";
|
|
owner = "VeriNum";
|
|
inherit version;
|
|
defaultVersion = with versions; switch coq.coq-version [
|
|
{ case = range "8.16" "8.17"; out = "2.1.1"; }
|
|
] null;
|
|
release."2.1.1".sha256 = "sha256-bd/XSQhyFUAnSm2bhZEZBWB6l4/Ptlm9JrWu6w9BOpw=";
|
|
releaseRev = v: "v${v}";
|
|
|
|
propagatedBuildInputs = [ interval compcert flocq bignums ];
|
|
|
|
meta = {
|
|
description = "A tool for Coq proofs about floating-point round-off error";
|
|
maintainers = with maintainers; [ quinn-dougherty ];
|
|
license = licenses.lgpl3Plus;
|
|
};
|
|
}
|