summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/odoc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-12 04:20:00 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2023-08-13 16:46:39 +0200
commit5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b (patch)
tree26784540ce422a427363013101fb4ab85ec6b9b5 /pkgs/development/ocaml-modules/odoc
parentc88c1f5a3678e6862493fb84f93c8fb95f75ea4e (diff)
downloadnixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar.gz
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar.bz2
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar.lz
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar.xz
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.tar.zst
nixpkgs-5ffd4ef38261f35f3ca76ccfda1f3a5d5ae0be1b.zip
ocamlPackages.odoc: 2.2.0 -> 2.2.1
Diff: https://github.com/ocaml/odoc/compare/2.2.0...2.2.1

Changelog: https://github.com/ocaml/odoc/blob/2.2.1/CHANGES.md
Diffstat (limited to 'pkgs/development/ocaml-modules/odoc')
-rw-r--r--pkgs/development/ocaml-modules/odoc/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/odoc/default.nix b/pkgs/development/ocaml-modules/odoc/default.nix
index c7ff41cebb3..43ec9da2883 100644
--- a/pkgs/development/ocaml-modules/odoc/default.nix
+++ b/pkgs/development/ocaml-modules/odoc/default.nix
@@ -6,15 +6,13 @@
 
 buildDunePackage rec {
   pname = "odoc";
-  version = "2.2.0";
+  version = "2.2.1";
 
   src = fetchurl {
     url = "https://github.com/ocaml/odoc/releases/download/${version}/odoc-${version}.tbz";
-    sha256 = "sha256-aBjJcfwMPu2dPRQzifgHObFhivcLn9tEOzW9fwEhdAw=";
+    sha256 = "sha256-F4blO/CCT+HHx7gdKn2EaEal0RZ3lp5jljYfd6OBaAM=";
   };
 
-  duneVersion = "3";
-
   nativeBuildInputs = [ cppo ];
   buildInputs = [ astring cmdliner fpath result tyxml odoc-parser fmt ];
 
@@ -35,5 +33,6 @@ buildDunePackage rec {
     license = lib.licenses.isc;
     maintainers = [ lib.maintainers.vbgl ];
     homepage = "https://github.com/ocaml/odoc";
+    changelog = "https://github.com/ocaml/odoc/blob/${version}/CHANGES.md";
   };
 }