mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
mkCoqDerivation,
|
|
coq,
|
|
dune,
|
|
ceres-bs,
|
|
equations,
|
|
metarocq-erasure-plugin,
|
|
version ? null,
|
|
}:
|
|
|
|
mkCoqDerivation {
|
|
pname = "verified-extraction";
|
|
owner = "MetaRocq";
|
|
repo = "rocq-verified-extraction";
|
|
opam-name = "rocq-verified-extraction";
|
|
|
|
inherit version;
|
|
defaultVersion =
|
|
let
|
|
case = coq: mr: out: {
|
|
cases = [
|
|
coq
|
|
mr
|
|
];
|
|
inherit out;
|
|
};
|
|
in
|
|
lib.switch
|
|
[
|
|
coq.coq-version
|
|
metarocq-erasure-plugin.version
|
|
]
|
|
[
|
|
(case "9.1" "1.5.1-9.1" "1.0.0-9.1")
|
|
]
|
|
null;
|
|
release = {
|
|
"1.0.0-9.1".hash = "sha256-0eKpchQtnPI12rcsb9+qN1pdNX9KY8VryZP0oqHuYeU=";
|
|
};
|
|
releaseRev = v: "v${v}";
|
|
|
|
mlPlugin = true;
|
|
|
|
buildInputs = [ dune ];
|
|
propagatedBuildInputs = [
|
|
coq.ocamlPackages.findlib
|
|
coq.ocamlPackages.malfunction
|
|
equations
|
|
metarocq-erasure-plugin
|
|
ceres-bs
|
|
];
|
|
|
|
prePatch = ''
|
|
patchShebangs plugin/plugin/clean_extraction.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://metarocq.github.io/";
|
|
description = "Verified Extraction from Rocq to OCaml. Including a bootstrapped extraction plugin";
|
|
maintainers = with maintainers; [
|
|
_4ever2
|
|
];
|
|
};
|
|
}
|