lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.angstrom: 0.8.1 -> 0.10.0

authored by

Vincent Laporte and committed by
Vincent Laporte
51d90811 96b9fdaa

+6 -4
+6 -4
pkgs/development/ocaml-modules/angstrom/default.nix
··· 1 - { stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest, result }: 1 + { stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest, result 2 + , bigstringaf 3 + }: 2 4 3 5 if !stdenv.lib.versionAtLeast ocaml.version "4.03" 4 6 then throw "angstrom is not available for OCaml ${ocaml.version}" 5 7 else 6 8 7 9 stdenv.mkDerivation rec { 8 - version = "0.8.1"; 10 + version = "0.10.0"; 9 11 name = "ocaml${ocaml.version}-angstrom-${version}"; 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "inhabitedtype"; 13 15 repo = "angstrom"; 14 16 rev = "${version}"; 15 - sha256 = "067r3vy5lac1bfx947gy722amna3dbcak54nlh24vx87pmcq31qc"; 17 + sha256 = "0lh6024yf9ds0nh9i93r9m6p5psi8nvrqxl5x7jwl13zb0r9xfpw"; 16 18 }; 17 19 18 20 buildInputs = [ ocaml findlib jbuilder alcotest ]; 19 - propagatedBuildInputs = [ result ]; 21 + propagatedBuildInputs = [ bigstringaf result ]; 20 22 21 23 buildPhase = "jbuilder build -p angstrom"; 22 24