summaryrefslogtreecommitdiff
path: root/pkgs/development/coq-modules/InfSeqExt/default.nix
blob: fd8174dccd4a13fb1575e68e95ac7faec8c78b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  mkCoqDerivation,
  coq,
  stdlib,
  version ? null,
}:

mkCoqDerivation {
  pname = "InfSeqExt";
  owner = "DistributedComponents";
  inherit version;
  defaultVersion =
    let
      case = case: out: { inherit case out; };
    in
    with lib.versions;
    lib.switch coq.version [
      (case (range "8.9" "9.2") "20230107")
      (case (range "8.5" "8.16") "20200131")
    ] null;
  release."20230107".rev = "601e89ec019501c48c27fcfc14b9a3c70456e408";
  release."20230107".sha256 = "sha256-YMBzVIsLkIC+w2TeyHrKe29eWLIxrH3wIMZqhik8p9I=";
  release."20200131".rev = "203d4c20211d6b17741f1fdca46dbc091f5e961a";
  release."20200131".sha256 = "0xylkdmb2dqnnqinf3pigz4mf4zmczcbpjnn59g5g76m7f2cqxl0";

  propagatedBuildInputs = [ stdlib ];
}