about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-07-22 06:15:10 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-07-29 07:47:21 +0000
commit51d90811235cb5557e76f5d9665cd3337bc82e53 (patch)
tree63ebf704bc1a924f17fb12943d8f4d5beb4b24a2 /pkgs
parent96b9fdaa3573e73a615a2ee919c1f2c7cd04ab28 (diff)
downloadnixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar.gz
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar.bz2
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar.lz
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar.xz
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.tar.zst
nixlib-51d90811235cb5557e76f5d9665cd3337bc82e53.zip
ocamlPackages.angstrom: 0.8.1 -> 0.10.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/angstrom/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/angstrom/default.nix b/pkgs/development/ocaml-modules/angstrom/default.nix
index 154b4890e4fc..97baca62e724 100644
--- a/pkgs/development/ocaml-modules/angstrom/default.nix
+++ b/pkgs/development/ocaml-modules/angstrom/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest, result }:
+{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest, result
+, bigstringaf
+}:
 
 if !stdenv.lib.versionAtLeast ocaml.version "4.03"
 then throw "angstrom is not available for OCaml ${ocaml.version}"
 else
 
 stdenv.mkDerivation rec {
-  version = "0.8.1";
+  version = "0.10.0";
   name = "ocaml${ocaml.version}-angstrom-${version}";
 
   src = fetchFromGitHub {
     owner  = "inhabitedtype";
     repo   = "angstrom";
     rev    = "${version}";
-    sha256 = "067r3vy5lac1bfx947gy722amna3dbcak54nlh24vx87pmcq31qc";
+    sha256 = "0lh6024yf9ds0nh9i93r9m6p5psi8nvrqxl5x7jwl13zb0r9xfpw";
   };
 
   buildInputs = [ ocaml findlib jbuilder alcotest ];
-  propagatedBuildInputs = [ result ];
+  propagatedBuildInputs = [ bigstringaf result ];
 
   buildPhase = "jbuilder build -p angstrom";