depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezos/protocol-plugin-010-PtGRANAD.nix

26 lines
543 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, tezos-stdlib
, tezos-embedded-protocol-010-PtGRANAD
, tezos-protocol-010-PtGRANAD
, tezos-shell
}:
buildDunePackage {
pname = "tezos-protocol-plugin-010-PtGRANAD";
inherit (tezos-stdlib) version useDune2;
src = "${tezos-stdlib.base_src}/src/proto_010_PtGRANAD/lib_plugin";
buildInputs = [
tezos-embedded-protocol-010-PtGRANAD
tezos-protocol-010-PtGRANAD
tezos-shell
];
doCheck = true;
meta = tezos-stdlib.meta // {
description = "Tezos/Protocol: protocol plugin registerer";
};
}