summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-07-06 04:20:00 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2023-07-07 22:20:10 +0200
commit8e4cdba2c7e548714b581fde9f5596786a9e5e5a (patch)
tree96b48495a6c2c82d2005a526acb4acb3bc57d9be /pkgs/development/tools/ocaml
parentb74f06d455a51a49b37d04613d398d10ea91dd01 (diff)
downloadnixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar.gz
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar.bz2
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar.lz
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar.xz
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.tar.zst
nixpkgs-8e4cdba2c7e548714b581fde9f5596786a9e5e5a.zip
ocamlPackages.utop: 2.12.1 -> 2.13.0
Diff: https://github.com/ocaml-community/utop/compare/2.12.1...2.13.0

Changelog: https://github.com/ocaml-community/utop/blob/2.13.0/CHANGES.md
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/utop/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index e1a739e999e..a06c5fca638 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -1,19 +1,19 @@
 { lib, stdenv, fetchurl, ocaml, findlib
 , lambda-term, cppo, makeWrapper, buildDunePackage
-, zed, logs, lwt, react, lwt_react
+, xdg, zed, logs, lwt, react, lwt_react
 }:
 
 buildDunePackage rec {
   pname = "utop";
 
-  version = "2.12.1";
-  propagatedBuildInputs = [ findlib lambda-term zed logs ];
+  version = "2.13.0";
+  propagatedBuildInputs = [ findlib lambda-term xdg zed logs ];
 
-  minimalOCamlVersion = "4.08";
+  minimalOCamlVersion = "4.11";
 
   src = fetchurl {
     url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz";
-    sha256 = "sha256-Z6S3pUE4RY5Q7keRUVSQuzkikewWgM+sRLgcR+8bIlM=";
+    sha256 = "sha256-iEUPIABsLRB4Gr6YQbrSpX5ymLXs8b4zu/Hq3r0Shtg=";
   };
 
   nativeBuildInputs = [ makeWrapper cppo ];
@@ -65,7 +65,8 @@ buildDunePackage rec {
 
     It integrates with the tuareg mode in Emacs.
     '';
-    homepage = "https://github.com/diml/utop";
+    homepage = "https://github.com/ocaml-community/utop";
+    changelog = "https://github.com/ocaml-community/utop/blob/${version}/CHANGES.md";
     license = lib.licenses.bsd3;
     platforms = ocaml.meta.platforms or [];
     maintainers = [