about summary refs log tree commit diff
path: root/pkgs/servers/h2
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-07-08 11:50:54 +0200
committerThomas Gerbet <thomas@gerbet.me>2023-07-08 11:50:54 +0200
commited04798c4b41cf1e5d7899cc2129869a38903148 (patch)
tree651c0f1c389c18abe6c2d38ca5a13ab47dc95141 /pkgs/servers/h2
parent96e065d2d4f9cca011f20ea6e8624bab40194d53 (diff)
h2: 2.1.210 -> 2.2.220
Release notes:
https://github.com/h2database/h2database/releases/tag/version-2.2.220
https://github.com/h2database/h2database/releases/tag/version-2.1.214
https://github.com/h2database/h2database/releases/tag/version-2.1.212
Diffstat (limited to 'pkgs/servers/h2')
-rw-r--r--pkgs/servers/h2/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/h2/default.nix b/pkgs/servers/h2/default.nix
index 62e1e22992f63..3ec3c396a7e86 100644
--- a/pkgs/servers/h2/default.nix
+++ b/pkgs/servers/h2/default.nix
@@ -1,11 +1,11 @@
 { lib, stdenv, fetchzip, jre, makeWrapper }:
 stdenv.mkDerivation rec {
   pname = "h2";
-  version = "2.1.210";
+  version = "2.2.220";
 
   src = fetchzip {
-    url = "https://github.com/h2database/h2database/releases/download/version-${version}/h2-2022-01-17.zip";
-    sha256 = "0zcjblhjj98dsj954ia3by9vx5w7mix1dzi85jnvp18kxmbldmf4";
+    url = "https://github.com/h2database/h2database/releases/download/version-${version}/h2-2023-07-04.zip";
+    hash = "sha256-nSOkCZuHcy0GR4SRjx524+MLqxJyO1PRkImPOFR1yts=";
   };
 
   outputs = [ "out" "doc" ];