Merge fort-nix/nix-bitcoin#619: clightning-rest: 0.10.3 -> 0.10.4

edcf39daf5 clightning-rest: 0.10.3 -> 0.10.4 (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK edcf39daf5

Tree-SHA512: 5614cd36e11542cb599a9c419fe91c67f847b55f4232d07421e8cbde8028134154d18e55b516c4e025543c24684f5d994df8cfaeaaa80e7a7b7e9f5a6b9570ad
This commit is contained in:
Jonas Nick 2023-06-24 20:35:38 +00:00
commit 379b9a727a
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 { let self = stdenvNoCC.mkDerivation {
pname = "clightning-rest"; pname = "clightning-rest";
version = "0.10.3"; version = "0.10.4";
src = fetchurl { src = fetchurl {
url = "https://github.com/Ride-The-Lightning/c-lightning-REST/archive/refs/tags/v${self.version}.tar.gz"; url = "https://github.com/Ride-The-Lightning/c-lightning-REST/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-1yGKCLO+hTHJG+xNLnNeySU/Awk7DxqhXHJHQAjMgAs="; hash = "sha256-oLTRiYVcR5ymYxK7kMGP0q2hjThxY7AH0aEo2WGwpcU=";
}; };
passthru = { passthru = {
@ -22,7 +22,7 @@ let self = stdenvNoCC.mkDerivation {
nodeModules = fetchNodeModules { nodeModules = fetchNodeModules {
inherit (self) src nodejs; inherit (self) src nodejs;
hash = "sha256-s98VHqSWGP9eI4oKL8XMyszmxAcLOvElolF5OdtDKCA="; hash = "sha256-C4hSNHZVR+Fubr1zM+aEygiqmk12mG1m596oRPxr4o4=";
}; };
}; };

View file

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