summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-26 04:20:00 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2023-08-27 08:06:49 +0200
commit702419396a9e3c96bbee40632664fc9e3216aa65 (patch)
treeb9c426531d88dabfa738a1cd8e4557ca59caadd5 /pkgs/development/ocaml-modules
parentda9271825d1b02c30860b788d1ee2861445ca4fe (diff)
downloadnixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar.gz
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar.bz2
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar.lz
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar.xz
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.tar.zst
nixpkgs-702419396a9e3c96bbee40632664fc9e3216aa65.zip
ocamlPackages.zed: 3.2.0 -> 3.2.3
Diff: https://github.com/ocaml-community/zed/compare/3.2.0...3.2.3

Changelog: https://github.com/ocaml-community/zed/blob/3.2.3/CHANGES.md
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/zed/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/zed/default.nix b/pkgs/development/ocaml-modules/zed/default.nix
index 2922a57244b..882dfb23996 100644
--- a/pkgs/development/ocaml-modules/zed/default.nix
+++ b/pkgs/development/ocaml-modules/zed/default.nix
@@ -5,8 +5,8 @@ let
     if lib.versionAtLeast ocaml.version "4.08"
     then
       {
-        version = "3.2.0";
-        sha256 = "sha256-6yKHE30nVFXo8hGdCx+GO4VYYGbi802aMdN2XuYMJ7w=";
+        version = "3.2.3";
+        sha256 = "sha256-lbhqjZxeUqHdd+yahRO+B6L2mc+h+4T2+qKVgWC2HY8=";
         propagatedBuildInputs = [ react result uchar uutf uucp uuseg ];
       }
     else
@@ -40,7 +40,8 @@ buildDunePackage rec {
 
     To support efficient text edition capabilities, Zed provides macro recording and cursor management facilities.
     '';
-    inherit (src.meta) homepage;
+    homepage = "https://github.com/ocaml-community/zed";
+    changelog = "https://github.com/ocaml-community/zed/blob/${version}/CHANGES.md";
     license = lib.licenses.bsd3;
     maintainers = [
       lib.maintainers.gal_bolle