Commit 7a9a124c authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

coqPackages.ExtLib: 0.12.1 → 0.12.2

Rename package from `coq-ext-lib` to `ExtLib`.
parent a3ce7fa7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,10 +2,9 @@

mkCoqDerivation rec {
  pname = "coq-ext-lib";
  owner = "coq-ext-lib";
  inherit version;
  defaultVersion = with lib.versions; lib.switch coq.coq-version [
    { case = range "8.14" "8.20"; out = "0.12.1"; }
    { case = range "8.14" "8.20"; out = "0.12.2"; }
    { case = range "8.11" "8.19"; out = "0.12.0"; }
    { case = range "8.8" "8.16"; out = "0.11.6"; }
    { case = range "8.8" "8.14"; out = "0.11.4"; }
@@ -14,6 +13,7 @@ mkCoqDerivation rec {
    { case = "8.6";              out = "0.9.5"; }
    { case = "8.5";              out = "0.9.4"; }
  ] null;
  release."0.12.2".sha256 = "sha256-lSTlbpkSuAY6B9cqofXSlDk2VchtqfZpRQ0+y/BAbEY=";
  release."0.12.1".sha256 = "sha256-YIHyiRUHPy/LGM2DMTRKRwP7j6OSBYKpu6wO2mZOubo=";
  release."0.12.0".sha256 = "sha256-9szpnWoS83bDc+iLqElfgz0LNRo9hSRQwUFIgpTca4c=";
  release."0.11.8".sha256 = "sha256-uUBKJb7XjRnyb7rCisZrDcaDdsp1Bv1lXDIU3Ce8e5k=";
+2 −2
Original line number Diff line number Diff line
{ lib, mkCoqDerivation, coq, version ? null , paco, coq-ext-lib }:
{ lib, mkCoqDerivation, coq, version ? null , paco, ExtLib }:

mkCoqDerivation rec {
  pname = "InteractionTrees";
@@ -15,7 +15,7 @@ mkCoqDerivation rec {
  release."4.0.0".sha256 = "0h5rhndl8syc24hxq1gch86kj7mpmgr89bxp2hmf28fd7028ijsm";
  release."3.2.0".sha256 = "sha256-10ckCAqSQ0I3CZKlSllI1obOgWVxDagTd7eyhrl1xpE=";
  releaseRev = v: "${v}";
  propagatedBuildInputs = [ coq-ext-lib paco ];
  propagatedBuildInputs = [ ExtLib paco ];
  meta = {
    description = "Library for Representing Recursive and Impure Programs in Coq";
    maintainers = with lib.maintainers; [ larsr ];
+2 −2
Original line number Diff line number Diff line
{ lib, mkCoqDerivation, coq, ssreflect, coq-ext-lib, simple-io, version ? null }:
{ lib, mkCoqDerivation, coq, ssreflect, ExtLib, simple-io, version ? null }:

let recent = lib.versions.isGe "8.7" coq.coq-version || coq.coq-version == "dev"; in
(mkCoqDerivation {
@@ -47,7 +47,7 @@ let recent = lib.versions.isGe "8.7" coq.coq-version || coq.coq-version == "dev"
  mlPlugin = true;
  nativeBuildInputs = lib.optional recent coq.ocamlPackages.ocamlbuild;
  propagatedBuildInputs = [ ssreflect ]
    ++ lib.optionals recent [ coq-ext-lib simple-io ];
    ++ lib.optionals recent [ ExtLib simple-io ];
  extraInstallFlags = [ "-f Makefile.coq" ];

  enableParallelBuilding = false;
+2 −2
Original line number Diff line number Diff line
{ lib, mkCoqDerivation, coq, ceres, coq-ext-lib, version ? null }:
{ lib, mkCoqDerivation, coq, ceres, ExtLib, version ? null }:

mkCoqDerivation {

@@ -6,7 +6,7 @@ mkCoqDerivation {
  repo = "coq-parsec";
  owner = "liyishuai";

  propagatedBuildInputs = [ ceres coq-ext-lib ];
  propagatedBuildInputs = [ ceres ExtLib ];
  releaseRev = (v: "v${v}");

  inherit version;
+2 −2
Original line number Diff line number Diff line
{ lib, callPackage, mkCoqDerivation, coq, coq-ext-lib, version ? null }:
{ lib, callPackage, mkCoqDerivation, coq, ExtLib, version ? null }:

(mkCoqDerivation {
  pname = "simple-io";
@@ -16,7 +16,7 @@
  release."1.3.0".sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax";
  mlPlugin = true;
  nativeBuildInputs = [ coq.ocamlPackages.cppo ];
  propagatedBuildInputs = [ coq-ext-lib ]
  propagatedBuildInputs = [ ExtLib ]
  ++ (with coq.ocamlPackages; [ ocaml findlib ocamlbuild ]);

  doCheck = true;
Loading