67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, nodejs-16_x
|
|
, nodejs-slim-16_x
|
|
, fetchNodeModules
|
|
, fetchpatch
|
|
, fetchurl
|
|
, applyPatches
|
|
, makeWrapper
|
|
}:
|
|
let self = stdenvNoCC.mkDerivation {
|
|
pname = "rtl";
|
|
version = "0.13.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
|
|
hash = "sha256-eyRM28h2TV3IyW4hDPHj/wMJxLEZin7AqWQZGQt5mV4=";
|
|
};
|
|
|
|
passthru = {
|
|
nodejs = nodejs-16_x;
|
|
nodejsRuntime = nodejs-slim-16_x;
|
|
|
|
nodeModules = fetchNodeModules {
|
|
inherit (self) src nodejs;
|
|
# TODO-EXTERNAL: Remove `npmFlags` when no longer required
|
|
# See: https://github.com/Ride-The-Lightning/RTL/issues/1182
|
|
npmFlags = "--legacy-peer-deps";
|
|
hash = "sha256-C4yK6deYXPrTa383aXiHoO0w3JAMIfAaESCEy9KKY2k=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
phases = "unpackPhase patchPhase installPhase";
|
|
|
|
# `src` already contains the precompiled frontend and backend.
|
|
# Copy all files required for packaging, like in
|
|
# https://github.com/Ride-The-Lightning/RTL/blob/master/dockerfiles/Dockerfile
|
|
installPhase = ''
|
|
dest=$out/lib/node_modules/rtl
|
|
mkdir -p $dest
|
|
cp -r \
|
|
rtl.js \
|
|
package.json \
|
|
frontend \
|
|
backend \
|
|
${self.nodeModules}/lib/node_modules \
|
|
$dest
|
|
|
|
makeWrapper ${self.nodejsRuntime}/bin/node "$out/bin/rtl" \
|
|
--add-flags "$dest/rtl.js"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A web interface for LND, c-lightning and Eclair";
|
|
homepage = "https://github.com/Ride-The-Lightning/RTL";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nixbitcoin erikarvstedt ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}; in self
|