ocamlPackages.hacl_x25519: 0.1.1 → 0.2.0
This commit is contained in:
parent
f4df9e3c2a
commit
cc4bb4b93b
|
@ -1,17 +1,18 @@
|
||||||
{ lib, buildDunePackage, fetchurl, benchmark, cstruct
|
{ lib, buildDunePackage, fetchurl, benchmark, cstruct
|
||||||
, eqaf, hex, ppx_blob, ppx_deriving_yojson, stdlib-shims, yojson }:
|
, alcotest , eqaf, hex, ppx_blob, ppx_deriving_yojson, stdlib-shims, yojson }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "hacl_x25519";
|
pname = "hacl_x25519";
|
||||||
version = "0.1.1";
|
version = "0.2.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/hacl/releases/download/v${version}/${pname}-v${version}.tbz";
|
url = "https://github.com/mirage/hacl/releases/download/v${version}/${pname}-v${version}.tbz";
|
||||||
sha256 = "187khbx1myh942c2v5f7wbms2hmhmgn57ik25djhnryln32c0874";
|
sha256 = "0ppq56i2yhxzz38w120aynnkx10kncl86zvqip9zx0v4974k3k4x";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
propagatedBuildInputs = [ eqaf cstruct ];
|
propagatedBuildInputs = [ eqaf cstruct ];
|
||||||
checkInputs = [ benchmark hex ppx_blob ppx_deriving_yojson stdlib-shims yojson ];
|
checkInputs = [ alcotest benchmark hex ppx_blob ppx_deriving_yojson stdlib-shims yojson ];
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue