Merge fort-nix/nix-bitcoin#752: rtl: 0.15.2 -> 0.15.4

50cafcaf8e rtl: 0.15.2 -> 0.15.4 (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK 50cafcaf8e

Tree-SHA512: dcfc8d534151a11e4a291b37b724c28716a14cf6c8633fdc4a6b913af98a920cc0722932d43a1a761996f2abe1e4f240e79b87b64098a1cac18f20d99e0213b6
This commit is contained in:
Jonas Nick 2024-12-13 21:21:36 +00:00
commit 5dd5b899eb
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.2";
version = "0.15.4";
src = fetchurl {
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-8Scgrr1An8vwiVgDFxVP6FQksqd6ctwZN2W2ErPp39Y=";
hash = "sha256-vHno0vMtT5fjtDG2hWGDZP2a34JrFWvqfIgIgvOTv08=";
};
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-LIKZOHc8FqvVX5LCJrq9Z76ZoyXLYiYsPIj6IieBWho=";
hash = "sha256-1x2IukpS85hEw3nmHl1dxNF5mXDmEX6H8pHve/MxWks=";
};
};

View file

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