nixpkgs/pkgs/development/coq-modules/flocq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, bash, autoconf, mkCoqDerivation, coq, version ? null }:
2020-08-28 22:05:46 +01:00
mkCoqDerivation {
2020-08-28 22:05:46 +01:00
pname = "flocq";
owner = "flocq";
domain = "gitlab.inria.fr";
inherit version;
defaultVersion = with lib.versions; lib.switch coq.coq-version [
2024-07-29 10:42:10 +01:00
{ case = range "8.14" "8.20"; out = "4.2.0"; }
2023-09-15 13:54:08 +01:00
{ case = range "8.14" "8.18"; out = "4.1.3"; }
2023-03-07 15:21:35 +00:00
{ case = range "8.14" "8.17"; out = "4.1.1"; }
{ case = range "8.14" "8.16"; out = "4.1.0"; }
2022-01-27 18:16:20 +00:00
{ case = range "8.7" "8.15"; out = "3.4.3"; }
2020-08-28 22:05:46 +01:00
{ case = range "8.5" "8.8"; out = "2.6.1"; }
] null;
2024-07-29 10:42:10 +01:00
release."4.2.0".sha256 = "sha256-uTeo4GCs6wTLN3sLKsj0xLlt1fUDYfozXtq6iooLUgM=";
2024-01-25 10:40:12 +00:00
release."4.1.4".sha256 = "sha256-Use6Mlx79yef1CkCPyGoOItsD69B9KR+mQArCtmre4s=";
2023-09-15 13:54:08 +01:00
release."4.1.3".sha256 = "sha256-os3cI885xNpxI+1p5rb8fSNnxKr7SFxqh83+3AM3t4I=";
2023-03-07 15:21:35 +00:00
release."4.1.1".sha256 = "sha256-FbClxlV0ZaxITe7s9SlNbpeMNDJli+Dfh2TMrjaMtHo=";
release."4.1.0".sha256 = "sha256:09rak9cha7q11yfqracbcq75mhmir84331h1218xcawza48rbjik";
2022-01-27 18:16:20 +00:00
release."3.4.3".sha256 = "sha256-YTdWlEmFJjCcHkl47jSOgrGqdXoApJY4u618ofCaCZE=";
2021-09-17 21:40:07 +01:00
release."3.4.2".sha256 = "1s37hvxyffx8ccc8mg5aba7ivfc39p216iibvd7f2cb9lniqk1pw";
2020-08-28 22:05:46 +01:00
release."3.3.1".sha256 = "1mk8adhi5hrllsr0hamzk91vf2405sjr4lh5brg9201mcw11abkz";
release."2.6.1".sha256 = "0q5a038ww5dn72yvwn5298d3ridkcngb1dik8hdyr3xh7gr5qibj";
releaseRev = v: "flocq-${v}";
nativeBuildInputs = [ bash autoconf ];
2020-08-28 22:05:46 +01:00
mlPlugin = true;
useMelquiondRemake.logpath = "Flocq";
meta = with lib; {
description = "Floating-point formalization for the Coq system";
2014-12-07 12:14:08 +00:00
license = licenses.lgpl3;
2014-10-21 06:23:36 +01:00
maintainers = with maintainers; [ jwiegley ];
};
2014-10-21 06:23:36 +01:00
}