From a5c3e147855db4439c59f8c5320895509687c73c Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 6 Feb 2020 20:20:20 -0500 Subject: [PATCH] dune_2: 2.1.3 -> 2.2.0 Changelog: https://github.com/ocaml/dune/releases/tag/2.2.0 --- pkgs/development/tools/ocaml/dune/2.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/ocaml/dune/2.nix b/pkgs/development/tools/ocaml/dune/2.nix index 8e409ac8ca7..dc6c27318b1 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.1.3"; + version = "2.2.0"; src = fetchurl { url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz"; - sha256 = "1cxf7g2kld7jmk6m47fdvmfdyqy1di517qiph55jrq7sm5akp3hy"; + sha256 = "1x4bipcyqhgagzvd5iq6p498a4qwvj622j240grsch8nq9qbjpmb"; }; buildInputs = [ ocaml findlib ]; @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { meta = { homepage = "https://dune.build/"; description = "A composable build system"; + changelog = "https://github.com/ocaml/dune/releases/tag/${version}"; maintainers = [ stdenv.lib.maintainers.vbgl stdenv.lib.maintainers.marsam ]; license = stdenv.lib.licenses.mit; inherit (ocaml.meta) platforms;