a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
29 lines
502 B
Nix
29 lines
502 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-protocol-compiler
|
|
, tezos-protocol-environment
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-protocol-010-PtGRANAD";
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src";
|
|
|
|
nativeBuildInputs = [
|
|
tezos-protocol-compiler
|
|
];
|
|
|
|
buildInputs = [
|
|
tezos-protocol-environment
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos/Protocol: economic-protocol definition";
|
|
};
|
|
}
|