diff --git a/app/sovran_systemsos_web/versions.json b/app/sovran_systemsos_web/versions.json index e6b3ab7..66df328 100644 --- a/app/sovran_systemsos_web/versions.json +++ b/app/sovran_systemsos_web/versions.json @@ -5,7 +5,7 @@ "bitcoind.service": "27.1.0", "electrs.service": "0.10.6", "lnd.service": "0.18.0", - "rtl.service": "0.15.8", + "rtl.service": "0.15.10", "btcpayserver.service": "2.4.2", "albyhub.service": "1.8.0", "mempool.service": "3.2.1", diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index ef6133d..87492db 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -136,9 +136,9 @@ let "electrs.service" = if pkgs ? electrs then pkgs.electrs.version else "0.10.6"; "lnd.service" = if pkgs ? lnd then pkgs.lnd.version else "0.18.0"; # Keep the fallbacks aligned with the vendored packages used by the - # service modules (RTL 0.15.8 and Mempool 3.2.1). The nixpkgs attrs are + # service modules (RTL 0.15.10 and Mempool 3.2.1). The nixpkgs attrs are # optional because these packages are built locally in this repository. - "rtl.service" = if pkgs ? clightning-rtl then pkgs.clightning-rtl.version else (if pkgs ? rtl then pkgs.rtl.version else "0.15.8"); + "rtl.service" = if pkgs ? clightning-rtl then pkgs.clightning-rtl.version else (if pkgs ? rtl then pkgs.rtl.version else "0.15.10"); # BTCPay Server is intentionally sourced from pkgs.stable by the service # module. Read the configured package here rather than pkgs.btcpayserver # (unstable), otherwise the Hub can advertise a version that is not running. diff --git a/packages/rtl/default.nix b/packages/rtl/default.nix index b4f8042..9dbe631 100644 --- a/packages/rtl/default.nix +++ b/packages/rtl/default.nix @@ -10,11 +10,11 @@ }: let self = stdenvNoCC.mkDerivation { pname = "rtl"; - version = "0.15.8"; + version = "0.15.10"; src = fetchurl { url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz"; - hash = "sha256-8XdGyORxB2dkZRB/Yl7zh+Quqo4L/Y0VmC6Brbr/hqU="; + hash = "sha256-r5riYV2FN0OKi0mwj9I1jBeeU1LOv2HVB6CEovPlUuY="; }; passthru = { @@ -26,7 +26,7 @@ let self = stdenvNoCC.mkDerivation { # TODO-EXTERNAL: Remove `npmFlags` when no longer required # See: https://github.com/Ride-The-Lightning/RTL/issues/1182 npmFlags = "--legacy-peer-deps"; - hash = "sha256-oMqd6nLzS6iQ9w4z2yzpR2unA5qhOq5YdvfoS8IgYLY="; + hash = "sha256-NKiWcjqYcHBVIB+vbF3aKXLe2fJRmh/quu8obztP3TA="; }; };