Merge fort-nix/nix-bitcoin#799: rtl: 0.15.4 -> 0.15.5

84028a238d rtl: 0.15.4 -> 0.15.5 (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK 84028a238d

Tree-SHA512: 747bf94c1f8a15af9973b61292a150f0971c68d5ef3e344c4a7e7ce2c3a6e81740e68c81548141a108c58963e73c183d9e4385106f47772fab5027d89309ad2e
This commit is contained in:
Jonas Nick 2025-07-16 19:50:32 +00:00
commit b53eefd78e
No known key found for this signature in database
GPG key ID: 4861DBF262123605
2 changed files with 4 additions and 4 deletions

View file

@ -9,11 +9,11 @@
}:
let self = stdenvNoCC.mkDerivation {
pname = "rtl";
version = "0.15.4";
version = "0.15.5";
src = fetchurl {
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-vHno0vMtT5fjtDG2hWGDZP2a34JrFWvqfIgIgvOTv08=";
hash = "sha256-qwXiMsE5lyFTpV5rbIOEmBPtcMkYteMr/W5LDHlIbus=";
};
passthru = {
@ -25,7 +25,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-1x2IukpS85hEw3nmHl1dxNF5mXDmEX6H8pHve/MxWks=";
hash = "sha256-gG99Sv72Wme8jZm959MyASZl9h1zQAqiReWa9XoTSJk=";
};
};

View file

@ -2,7 +2,7 @@
set -euo pipefail
. "${BASH_SOURCE[0]%/*}/../../helper/run-in-nix-env" "gnupg wget gnused" "$@"
version="0.15.4"
version="0.15.5"
repo=https://github.com/Ride-The-Lightning/RTL
scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)