about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2019-02-15 07:10:53 -0800
committerGitHub <noreply@github.com>2019-02-15 07:10:53 -0800
commit64b05b873348f3a84bfd9949a4841988101956ae (patch)
tree0a93f5714c495fc06ea5af9c274e9a20b1b8d74b /pkgs/development/tools/ocaml
parent865926e709e64843dfd177e9b7cd616e9aa5e8bd (diff)
parentc9a28dcaa6191507bbff712b061f725bdad86bc9 (diff)
downloadnixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar.gz
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar.bz2
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar.lz
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar.xz
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.tar.zst
nixlib-64b05b873348f3a84bfd9949a4841988101956ae.zip
Merge pull request #55236 from r-ryantm/auto-update/utop
ocamlPackages.utop: 2.2.0 -> 2.3.0
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/utop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index 434f8b3af2ea..be6bb73aab81 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -7,12 +7,12 @@ then throw "utop is not available for OCaml ${ocaml.version}"
 else
 
 stdenv.mkDerivation rec {
-  version = "2.2.0";
+  version = "2.3.0";
   name = "utop-${version}";
 
   src = fetchurl {
     url = "https://github.com/diml/utop/archive/${version}.tar.gz";
-    sha256 = "1414snwmqaxs1x8wbpjf6fn3jsl01hq0phrr7639xmb5vh15mgd4";
+    sha256 = "1g1xf19fhzwsikp33pv1wf6wb2qdc5y7dzqi46h8c4l850cwscjh";
   };
 
   nativeBuildInputs = [ makeWrapper ];