mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2db064d028
ocamlPackages.lwt-canceler: 0.2 -> 0.3 ocamlPackages.json-data-encoding: 0.8 -> 0.10 ocamlPackages.data-encoding: 0.2.0 -> 0.4.0 ocamlPackages.ff-sig, ff-pbt: init at 0.6.1 ocamlPacakges.bls12-381: 0.3.15 -> 0.4.2 Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
27 lines
463 B
Nix
27 lines
463 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-hacl-glue
|
|
, ctypes
|
|
, hacl-star
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-hacl-glue-unix";
|
|
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src/lib_hacl_glue/unix";
|
|
|
|
propagatedBuildInputs = [
|
|
ctypes
|
|
hacl-star
|
|
tezos-hacl-glue
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: thin layer of glue around hacl-star (unix implementation)";
|
|
};
|
|
}
|