about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-10-11 06:02:25 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-10-18 05:59:29 +0000
commit69d5465431f59fecb8c19c3483516e261e11310e (patch)
tree9b5bf0246f961f95369710f1ab3e7fa8ae34a340 /pkgs/development/ocaml-modules
parent734119c74d2cdb75c84a16d03129c1c82b28d9f6 (diff)
downloadnixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar.gz
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar.bz2
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar.lz
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar.xz
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.tar.zst
nixlib-69d5465431f59fecb8c19c3483516e261e11310e.zip
ocamlPackages.bigstringaf: 0.3.0 → 0.6.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/bigstringaf/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/bigstringaf/default.nix b/pkgs/development/ocaml-modules/bigstringaf/default.nix
index 762e675d51ce..0544ebbe6856 100644
--- a/pkgs/development/ocaml-modules/bigstringaf/default.nix
+++ b/pkgs/development/ocaml-modules/bigstringaf/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchFromGitHub, buildDunePackage, alcotest }:
+{ lib, fetchFromGitHub, buildDunePackage, alcotest, bigarray-compat }:
 
 buildDunePackage rec {
   pname = "bigstringaf";
-  version = "0.3.0";
+  version = "0.6.0";
 
   minimumOCamlVersion = "4.03";
 
@@ -10,16 +10,17 @@ buildDunePackage rec {
     owner = "inhabitedtype";
     repo = pname;
     rev = version;
-    sha256 = "1yx6hv8rk0ldz1h6kk00rwg8abpfc376z00aifl9f5rn7xavpscs";
+    sha256 = "04b088vrqzmxsyan9f9nr8721bxip4b930cgvb5zkbbmrw3ylmwc";
   };
 
   buildInputs = [ alcotest ];
+  propagatedBuildInputs = [ bigarray-compat ];
   doCheck = true;
 
   meta = {
     description = "Bigstring intrinsics and fast blits based on memcpy/memmove";
-    license = stdenv.lib.licenses.bsd3;
-    maintainers = [ stdenv.lib.maintainers.vbgl ];
+    license = lib.licenses.bsd3;
+    maintainers = [ lib.maintainers.vbgl ];
     inherit (src.meta) homepage;
   };
 }