nix-bitcoin/pkgs/clightning-rest/generate.sh

41 lines
1.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2021-11-08 03:42:24 -08:00
set -euo pipefail
. "${BASH_SOURCE[0]%/*}/../../helper/run-in-nix-env" "gnupg wget gnused" "$@"
2021-11-08 03:42:24 -08:00
2022-08-27 05:08:48 -07:00
version="0.9.0"
2021-12-14 10:51:20 -08:00
repo=https://github.com/Ride-The-Lightning/c-lightning-REST
scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)
updateSrc() {
TMPDIR=$(mktemp -d /tmp/clightning-rest.XXX)
trap 'rm -rf $TMPDIR' EXIT
2021-12-14 10:51:20 -08:00
# Fetch and verify source tarball
export GNUPGHOME=$TMPDIR
# Fetch saubyk's key
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key 3E9BD4436C288039CA827A9200C9E2BC2E45666F
file=v${version}.tar.gz
wget -P "$TMPDIR" "${repo}/archive/refs/tags/${file}"
wget -P "$TMPDIR" "${repo}/releases/download/v${version}/${file}.asc"
gpg --verify "${TMPDIR}/${file}.asc" "${TMPDIR}/${file}"
hash=$(nix hash file "${TMPDIR}/${file}")
2021-11-08 03:42:24 -08:00
sed -i "
s|\bversion = .*;|version = \"$version\";|
s|\bhash = .*;|hash = \"$hash\";|
" default.nix
}
2021-11-08 03:42:24 -08:00
updateNodeModulesHash() {
"$scriptDir/../../helper/update-fixed-output-derivation.sh" ./default.nix clightning-rest.nodeModules nodeModules
}
2021-11-08 03:42:24 -08:00
if [[ $# == 0 ]]; then
# Each of these can be run separately
updateSrc
updateNodeModulesHash
else
"$@"
fi