summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/batteries
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-02-17 17:57:45 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-02-24 16:04:15 +0100
commit86d1378d3e49e8dcaf3b6135a7fffe8f789609df (patch)
treed152eb561bda5c821ad1a0f09a3b1b666beebd5b /pkgs/development/ocaml-modules/batteries
parentf0927d3a1704b7ee40a35793fb93bd45c9979cf9 (diff)
downloadnixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar.gz
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar.bz2
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar.lz
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar.xz
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.tar.zst
nixpkgs-86d1378d3e49e8dcaf3b6135a7fffe8f789609df.zip
ocamlPackages.batteries: 2.11.0 → 3.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules/batteries')
-rw-r--r--pkgs/development/ocaml-modules/batteries/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix
index 1b3bb9a7981..263da89d1df 100644
--- a/pkgs/development/ocaml-modules/batteries/default.nix
+++ b/pkgs/development/ocaml-modules/batteries/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, ocaml, findlib, ocamlbuild, qtest, num }:
 
-let version = "2.11.0"; in
+let version = "3.0.0"; in
 
 stdenv.mkDerivation {
   name = "ocaml${ocaml.version}-batteries-${version}";
 
   src = fetchurl {
     url = "https://github.com/ocaml-batteries-team/batteries-included/releases/download/v${version}/batteries-${version}.tar.gz";
-    sha256 = "0swdnm9c3sd3yzzyg7yh1lkqhfikmga4fzx2416ja1q62nv26j53";
+    sha256 = "0d833amm4p0pczgl7wriv99f3r5r6345p5gi9d97sm0hqx27vzwi";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild qtest ];