57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
coq,
|
|
rocqPackages,
|
|
mkCoqDerivation,
|
|
lib,
|
|
version ? null,
|
|
}@args:
|
|
(mkCoqDerivation {
|
|
|
|
pname = "stdlib";
|
|
repo = "stdlib";
|
|
owner = "coq";
|
|
opam-name = "coq-stdlib";
|
|
|
|
inherit version;
|
|
defaultVersion =
|
|
let
|
|
case = case: out: { inherit case out; };
|
|
in
|
|
with lib.versions;
|
|
lib.switch coq.coq-version [
|
|
(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}";
|
|
|
|
release."9.0.0".sha256 = "sha256-2l7ak5Q/NbiNvUzIVXOniEneDXouBMNSSVFbD1Pf8cQ=";
|
|
|
|
configurePhase = ''
|
|
echo no configuration
|
|
'';
|
|
buildPhase = ''
|
|
echo building nothing
|
|
'';
|
|
installPhase = ''
|
|
echo installing nothing
|
|
'';
|
|
|
|
meta = {
|
|
description = "Compatibility metapackage for Coq Stdlib library after the Rocq renaming";
|
|
license = lib.licenses.lgpl21Only;
|
|
};
|
|
|
|
}).overrideAttrs
|
|
(
|
|
o:
|
|
# stdlib is already included in Coq <= 8.20
|
|
if coq.version != null && coq.version != "dev" && lib.versions.isLt "8.21" coq.version then
|
|
{
|
|
installPhase = ''
|
|
touch $out
|
|
'';
|
|
}
|
|
else
|
|
{ propagatedBuildInputs = [ rocqPackages.stdlib ]; }
|
|
)
|