Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocaml-batteries: 2.4.0 -> 2.5.2 (#15424)

vbgl 2d727237 6d1fe178

+2 -2
+2 -2
pkgs/development/ocaml-modules/batteries/default.nix
··· 1 1 { stdenv, fetchzip, ocaml, findlib, qtest }: 2 2 3 - let version = "2.4.0"; in 3 + let version = "2.5.2"; in 4 4 5 5 stdenv.mkDerivation { 6 6 name = "ocaml-batteries-${version}"; 7 7 8 8 src = fetchzip { 9 9 url = "https://github.com/ocaml-batteries-team/batteries-included/archive/v${version}.tar.gz"; 10 - sha256 = "0bxp5d05w1igwh9vcgvhd8sd6swf2ddsjphw0mkakdck9afnimmd"; 10 + sha256 = "01v7sp8vsqlfrmpji5pkrsjl43r3q8hk1a4z4lmyy9y2i0fqwl07"; 11 11 }; 12 12 13 13 buildInputs = [ ocaml findlib qtest ];