about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-04-13 12:51:39 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2020-04-14 11:57:24 +0200
commit9dcaaeafff950b6dd6e4d415b49a027a31983783 (patch)
tree7553389fd5ba9fbc3fa83d48ffa45ac6315162c5 /pkgs/development
parent96bf541725e24284d463915f52132bc87bff13e2 (diff)
downloadnixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar.gz
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar.bz2
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar.lz
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar.xz
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.tar.zst
nixlib-9dcaaeafff950b6dd6e4d415b49a027a31983783.zip
ocamlPackages.eqaf: enable cstruct and bigarray modules
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/eqaf/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/eqaf/default.nix b/pkgs/development/ocaml-modules/eqaf/default.nix
index 914378431ac9..13d691f71cc7 100644
--- a/pkgs/development/ocaml-modules/eqaf/default.nix
+++ b/pkgs/development/ocaml-modules/eqaf/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, buildDunePackage }:
+{ lib, fetchurl, buildDunePackage, cstruct, bigarray-compat }:
 
 buildDunePackage rec {
   minimumOCamlVersion = "4.03";
@@ -10,6 +10,8 @@ buildDunePackage rec {
     sha256 = "068r231ia87mpqpaqzqb9sjfj6yaqrwvcls2p173aa4qg38xvsq9";
   };
 
+  propagatedBuildInputs = [ cstruct bigarray-compat ];
+
   meta = {
     description = "Constant time equal function to avoid timing attacks in OCaml";
     homepage = "https://github.com/mirage/eqaf";