summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/dune
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-09-09 00:01:35 +0000
committerGitHub <noreply@github.com>2021-09-09 00:01:35 +0000
commit8cd1da23628a826e2b461f91c229d785120edc3b (patch)
treefc74d0c99180a1da38a921ced7f105f005eb7bca /pkgs/development/tools/ocaml/dune
parentb913568092d28651b7feb6f3f56cabe2279187c9 (diff)
parenteffeaac77cad3d9fb2143587bbd9bd3b92e60c20 (diff)
downloadnixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar.gz
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar.bz2
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar.lz
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar.xz
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.tar.zst
nixpkgs-8cd1da23628a826e2b461f91c229d785120edc3b.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/tools/ocaml/dune')
-rw-r--r--pkgs/development/tools/ocaml/dune/2.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/dune/2.nix b/pkgs/development/tools/ocaml/dune/2.nix
index 16f33268cf1..f80fabedebe 100644
--- a/pkgs/development/tools/ocaml/dune/2.nix
+++ b/pkgs/development/tools/ocaml/dune/2.nix
@@ -6,11 +6,11 @@ else
 
 stdenv.mkDerivation rec {
   pname = "dune";
-  version = "2.9.0";
+  version = "2.9.1";
 
   src = fetchurl {
     url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
-    sha256 = "07m476kgagpd6kzm3jq30yfxqspr2hychah0xfqs14z82zxpq8dv";
+    sha256 = "09lzq04b642iy0ljp59p32lgk3q8iphjh8fkdp69q29l5frgwx5k";
   };
 
   nativeBuildInputs = [ ocaml findlib ];
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = "https://dune.build/";
     description = "A composable build system";
-    changelog = "https://github.com/ocaml/dune/blob/${version}/CHANGES.md";
+    changelog = "https://github.com/ocaml/dune/raw/${version}/CHANGES.md";
     maintainers = [ lib.maintainers.vbgl lib.maintainers.marsam ];
     license = lib.licenses.mit;
     inherit (ocaml.meta) platforms;