UnionFind

This commit is contained in:
Alexander Bantyev 2020-03-26 20:44:49 +03:00
parent b8cbd8929b
commit 1c1dac1896
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5

View File

@ -20,7 +20,8 @@ in {
cohttp-lwt-unix = osuper.cohttp-lwt-unix.versions."2.4.0";
cohttp-lwt = osuper.cohttp-lwt.versions."2.4.0";
macaddr = osuper.macaddr.versions."4.0.0";
ocaml-migrate-parsetree = osuper.ocaml-migrate-parsetree.versions."1.4.0";
ocaml-migrate-parsetree =
osuper.ocaml-migrate-parsetree.versions."1.4.0";
ppx_tools_versioned = osuper.ppx_tools_versioned.versions."5.2.3";
tezos-protocol-compiler = osuper.tezos-protocol-compiler.overrideAttrs
(oa: {
@ -51,6 +52,7 @@ in {
pname = "tezos-utils";
version = "0.1";
} { };
proto-alpha-utils =
oself.callOPAMPackage ../vendors/ligo-utils/proto-alpha-utils {
pname = "proto-alpha-utils";
@ -58,25 +60,34 @@ in {
extraBuildInputs =
[ oself.tezos-protocol-006-PsCARTHA-parameters ];
} { };
simple-utils =
oself.callOPAMPackage ../vendors/ligo-utils/simple-utils {
pname = "simple-utils";
version = "0.1";
} { };
tezos-memory-proto-alpha =
oself.callOPAMPackage ../vendors/ligo-utils/memory-proto-alpha {
pname = "tezos-memory-proto-alpha";
version = "0.0.0";
} { };
michelson-parser = oself.callOPAMPackage
../vendors/ligo-utils/tezos-utils/michelson-parser {
pname = "michelson-parser";
version = "0.0.0";
} { ocamlfind = oself.findlib; };
UnionFind = oself.callOPAMPackage ../vendors/UnionFind rec {
pname = "UnionFind";
version = "master";
buildPhase = "echo ${version} > Version.ml; dune build -p ${pname}";
} { };
ligo = oself.callOPAMPackage ../. {
version = "0.1";
extraBuildInputs = with oself; [ ppx_tools_versioned getopt ];
extraBuildInputs = with oself; [ ppx_tools_versioned getopt self.getopt UnionFind ];
} { };
})
]);