depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezos/protocol-updater.nix

27 lines
507 B
Nix
Raw Normal View History

{ lib
, ocaml
, buildDunePackage
, tezos-stdlib
, tezos-protocol-compiler
, tezos-shell-context
, lwt-exit
}:
buildDunePackage {
pname = "tezos-protocol-updater";
inherit (tezos-stdlib) version useDune2;
src = "${tezos-stdlib.base_src}/src/lib_protocol_updater";
propagatedBuildInputs = [
tezos-shell-context
lwt-exit
tezos-protocol-compiler
];
doCheck = true;
meta = tezos-stdlib.meta // {
description = "Tezos: economic-protocol dynamic loading for `tezos-node`";
};
}