ocamlPackages.eqaf: enable cstruct and bigarray modules

This commit is contained in:
sternenseemann 2020-04-13 12:51:39 +02:00 committed by Vincent Laporte
parent 96bf541725
commit 9dcaaeafff
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,4 +1,4 @@
{ lib, fetchurl, buildDunePackage }: { lib, fetchurl, buildDunePackage, cstruct, bigarray-compat }:
buildDunePackage rec { buildDunePackage rec {
minimumOCamlVersion = "4.03"; minimumOCamlVersion = "4.03";
@ -10,6 +10,8 @@ buildDunePackage rec {
sha256 = "068r231ia87mpqpaqzqb9sjfj6yaqrwvcls2p173aa4qg38xvsq9"; sha256 = "068r231ia87mpqpaqzqb9sjfj6yaqrwvcls2p173aa4qg38xvsq9";
}; };
propagatedBuildInputs = [ cstruct bigarray-compat ];
meta = { meta = {
description = "Constant time equal function to avoid timing attacks in OCaml"; description = "Constant time equal function to avoid timing attacks in OCaml";
homepage = "https://github.com/mirage/eqaf"; homepage = "https://github.com/mirage/eqaf";