From 67475f768e9013f5a670e1acb13d5fa6a3168818 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Mon, 29 May 2023 15:35:58 +0200 Subject: [PATCH] clightning-rest: 0.9.0 -> 0.10.3 --- pkgs/clightning-rest/default.nix | 6 +++--- pkgs/clightning-rest/generate.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/clightning-rest/default.nix b/pkgs/clightning-rest/default.nix index 0b54611..dec39e6 100644 --- a/pkgs/clightning-rest/default.nix +++ b/pkgs/clightning-rest/default.nix @@ -9,11 +9,11 @@ }: let self = stdenvNoCC.mkDerivation { pname = "clightning-rest"; - version = "0.9.0"; + version = "0.10.3"; src = fetchurl { url = "https://github.com/Ride-The-Lightning/c-lightning-REST/archive/refs/tags/v${self.version}.tar.gz"; - hash = "sha256-1thorV/UivDDH7oqjfm8VTd47LYSGooR2yEoETgBOH4="; + hash = "sha256-1yGKCLO+hTHJG+xNLnNeySU/Awk7DxqhXHJHQAjMgAs="; }; passthru = { @@ -22,7 +22,7 @@ let self = stdenvNoCC.mkDerivation { nodeModules = fetchNodeModules { inherit (self) src nodejs; - hash = "sha256-rQrAt2BDmNMUCVWxTJN3qoPonKlRWeJ8C4ZvF/gPygk="; + hash = "sha256-s98VHqSWGP9eI4oKL8XMyszmxAcLOvElolF5OdtDKCA="; }; }; diff --git a/pkgs/clightning-rest/generate.sh b/pkgs/clightning-rest/generate.sh index c03bdf3..cb00768 100755 --- a/pkgs/clightning-rest/generate.sh +++ b/pkgs/clightning-rest/generate.sh @@ -2,7 +2,7 @@ set -euo pipefail . "${BASH_SOURCE[0]%/*}/../../helper/run-in-nix-env" "gnupg wget gnused" "$@" -version="0.9.0" +version="0.10.3" repo=https://github.com/Ride-The-Lightning/c-lightning-REST scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)