Commit 2fcfe280 authored by Pierre Roux's avatar Pierre Roux Committed by Vincent Laporte
Browse files

rocq-core_9_1: init at 9.1+rc1

parent 431f160d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@ let
    "8.20.0".sha256 = "sha256-WFpZlA6CzFVAruPhWcHQI7VOBVhrGLdFzWrHW0DTSl0=";
    "8.20.1".sha256 = "sha256-nRaLODPG4E3gUDzGrCK40vhl4+VhPyd+/fXFK/HC3Ig=";
    "9.0.0".sha256 = "sha256-GRwYSvrJGiPD+I82gLOgotb+8Ra5xHZUJGcNwxWqZkU=";
    "9.1+rc1".sha256 = "sha256-GShKHQ9EdvyNe9WlkzF6KLYybc5dPeVrh4bpkVy6pY4=";
  };
  releaseRev = v: "V${v}";
  fetched =
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ let

  release = {
    "9.0.0".sha256 = "sha256-GRwYSvrJGiPD+I82gLOgotb+8Ra5xHZUJGcNwxWqZkU=";
    "9.1+rc1".sha256 = "sha256-GShKHQ9EdvyNe9WlkzF6KLYybc5dPeVrh4bpkVy6pY4=";
  };
  releaseRev = v: "V${v}";
  fetched =
+3 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

(mkCoqDerivation {
  pname = "bignums";
  owner = "coq";
  owner = "rocq-community";
  inherit version;
  defaultVersion =
    let
@@ -17,11 +17,12 @@
    in
    with lib.versions;
    lib.switch coq.coq-version [
      (case (range "9.0" "9.0") "9.0.0+rocq${coq.coq-version}")
      (case (range "9.0" "9.1") "9.0.0+rocq${coq.coq-version}")
      (case (range "8.13" "8.20") "9.0.0+coq${coq.coq-version}")
      (case (range "8.6" "8.17") "${coq.coq-version}.0")
    ] null;

  release."9.0.0+rocq9.1".sha256 = "sha256-MSjlfJs3JOakuShOj+isNlus0bKlZ+rkvzRoKZQK5RQ=";
  release."9.0.0+rocq9.0".sha256 = "sha256-ctnwpyNVhryEUA5YEsAImrcJsNMhtBgDSOz+z5Z4R78=";
  release."9.0.0+coq8.20".sha256 = "sha256-pkvyDaMXRalc6Uu1eBTuiqTpRauRrzu946c6TavyTKY=";
  release."9.0.0+coq8.19".sha256 = "sha256-02uL+qWbUveHe67zKfc8w3U0iN3X2DKBsvP3pKpW8KQ=";
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    in
    with lib.versions;
    lib.switch coq.coq-version [
      (case (isLe "9.0") "9.0.0")
      (case (isLe "9.1") "9.0.0")
      # the < 9.0 above is artificial as stdlib was included in Coq before
    ] null;
  releaseRev = v: "V${v}";
+4 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

mkRocqDerivation {
  pname = "bignums";
  owner = "coq";
  owner = "rocq-community";
  inherit version;
  defaultVersion =
    let
@@ -16,11 +16,12 @@ mkRocqDerivation {
    in
    with lib.versions;
    lib.switch rocq-core.rocq-version [
      (case (range "9.0" "9.0") "9.0.0+rocq${rocq-core.rocq-version}")
      (case (range "9.0" "9.1") "9.0.0+rocq${rocq-core.rocq-version}")
    ] null;

  release."9.0.0+rocq9.0".sha256 = "sha256-ctnwpyNVhryEUA5YEsAImrcJsNMhtBgDSOz+z5Z4R78=";
  releaseRev = v: "${if lib.versions.isGe "9.0" v then "v" else "V"}${v}";
  release."9.0.0+rocq9.1".sha256 = "sha256-MSjlfJs3JOakuShOj+isNlus0bKlZ+rkvzRoKZQK5RQ=";
  releaseRev = v: "v${v}";

  mlPlugin = true;

Loading