Skip to content

Commit 7a9a124

Browse files
committed
coqPackages.ExtLib: 0.12.1 → 0.12.2
Rename package from `coq-ext-lib` to `ExtLib`.
1 parent a3ce7fa commit 7a9a124

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

pkgs/development/coq-modules/coq-ext-lib/default.nix renamed to pkgs/development/coq-modules/ExtLib/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
mkCoqDerivation rec {
44
pname = "coq-ext-lib";
5-
owner = "coq-ext-lib";
65
inherit version;
76
defaultVersion = with lib.versions; lib.switch coq.coq-version [
8-
{ case = range "8.14" "8.20"; out = "0.12.1"; }
7+
{ case = range "8.14" "8.20"; out = "0.12.2"; }
98
{ case = range "8.11" "8.19"; out = "0.12.0"; }
109
{ case = range "8.8" "8.16"; out = "0.11.6"; }
1110
{ case = range "8.8" "8.14"; out = "0.11.4"; }
@@ -14,6 +13,7 @@ mkCoqDerivation rec {
1413
{ case = "8.6"; out = "0.9.5"; }
1514
{ case = "8.5"; out = "0.9.4"; }
1615
] null;
16+
release."0.12.2".sha256 = "sha256-lSTlbpkSuAY6B9cqofXSlDk2VchtqfZpRQ0+y/BAbEY=";
1717
release."0.12.1".sha256 = "sha256-YIHyiRUHPy/LGM2DMTRKRwP7j6OSBYKpu6wO2mZOubo=";
1818
release."0.12.0".sha256 = "sha256-9szpnWoS83bDc+iLqElfgz0LNRo9hSRQwUFIgpTca4c=";
1919
release."0.11.8".sha256 = "sha256-uUBKJb7XjRnyb7rCisZrDcaDdsp1Bv1lXDIU3Ce8e5k=";

pkgs/development/coq-modules/ITree/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, mkCoqDerivation, coq, version ? null , paco, coq-ext-lib }:
1+
{ lib, mkCoqDerivation, coq, version ? null , paco, ExtLib }:
22

33
mkCoqDerivation rec {
44
pname = "InteractionTrees";
@@ -15,7 +15,7 @@ mkCoqDerivation rec {
1515
release."4.0.0".sha256 = "0h5rhndl8syc24hxq1gch86kj7mpmgr89bxp2hmf28fd7028ijsm";
1616
release."3.2.0".sha256 = "sha256-10ckCAqSQ0I3CZKlSllI1obOgWVxDagTd7eyhrl1xpE=";
1717
releaseRev = v: "${v}";
18-
propagatedBuildInputs = [ coq-ext-lib paco ];
18+
propagatedBuildInputs = [ ExtLib paco ];
1919
meta = {
2020
description = "Library for Representing Recursive and Impure Programs in Coq";
2121
maintainers = with lib.maintainers; [ larsr ];

pkgs/development/coq-modules/QuickChick/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, mkCoqDerivation, coq, ssreflect, coq-ext-lib, simple-io, version ? null }:
1+
{ lib, mkCoqDerivation, coq, ssreflect, ExtLib, simple-io, version ? null }:
22

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

5353
enableParallelBuilding = false;

pkgs/development/coq-modules/parsec/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
{ lib, mkCoqDerivation, coq, ceres, coq-ext-lib, version ? null }:
1+
{ lib, mkCoqDerivation, coq, ceres, ExtLib, version ? null }:
22

33
mkCoqDerivation {
44

55
pname = "parsec";
66
repo = "coq-parsec";
77
owner = "liyishuai";
88

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

1212
inherit version;

pkgs/development/coq-modules/simple-io/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, callPackage, mkCoqDerivation, coq, coq-ext-lib, version ? null }:
1+
{ lib, callPackage, mkCoqDerivation, coq, ExtLib, version ? null }:
22

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

2222
doCheck = true;

pkgs/top-level/coq-packages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ let
4141
};
4242
coq-bits = callPackage ../development/coq-modules/coq-bits {};
4343
coq-elpi = callPackage ../development/coq-modules/coq-elpi {};
44-
coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {};
4544
coq-hammer = callPackage ../development/coq-modules/coq-hammer { };
4645
coq-hammer-tactics = callPackage ../development/coq-modules/coq-hammer/tactics.nix { };
4746
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
@@ -63,6 +62,7 @@ let
6362
dpdgraph = callPackage ../development/coq-modules/dpdgraph {};
6463
ElmExtraction = callPackage ../development/coq-modules/ElmExtraction {};
6564
equations = callPackage ../development/coq-modules/equations { };
65+
ExtLib = callPackage ../development/coq-modules/ExtLib {};
6666
extructures = callPackage ../development/coq-modules/extructures { };
6767
fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};
6868
flocq = callPackage ../development/coq-modules/flocq {};

0 commit comments

Comments
 (0)