2022-08-21 05:41:37 -07:00
|
|
|
{ lib
|
|
|
|
, stdenvNoCC
|
|
|
|
, nodejs-16_x
|
|
|
|
, nodejs-slim-16_x
|
|
|
|
, fetchNodeModules
|
|
|
|
, fetchpatch
|
|
|
|
, fetchurl
|
|
|
|
, applyPatches
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
|
|
|
let self = stdenvNoCC.mkDerivation {
|
|
|
|
pname = "rtl";
|
2022-12-20 14:23:24 -08:00
|
|
|
version = "0.13.2";
|
2022-08-21 05:41:37 -07:00
|
|
|
|
2022-12-20 14:23:24 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
|
|
|
|
hash = "sha256-7VrLxmE+xPCipx7UOG1mja2pSBrj+swk55afcvBQeDU=";
|
2022-08-21 05:41:37 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
nodejs = nodejs-16_x;
|
|
|
|
nodejsRuntime = nodejs-slim-16_x;
|
|
|
|
|
|
|
|
nodeModules = fetchNodeModules {
|
|
|
|
inherit (self) src nodejs;
|
2022-12-20 14:23:24 -08:00
|
|
|
hash = "sha256-ohS6gVX0M1Ir1QE9SjibbCrBpkXYIv5jV1Bkv0czRw4=";
|
2022-08-21 05:41:37 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-12-14 10:51:22 -08:00
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
2022-08-21 05:41:37 -07:00
|
|
|
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
|
|
|
|
|
2022-08-25 12:00:00 -07:00
|
|
|
makeWrapper ${self.nodejsRuntime}/bin/node "$out/bin/rtl" \
|
|
|
|
--add-flags "$dest/rtl.js"
|
2022-08-21 05:41:37 -07:00
|
|
|
|
|
|
|
runHook postInstall
|
2021-12-14 10:51:22 -08:00
|
|
|
'';
|
2021-12-14 10:51:23 -08:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A web interface for LND, c-lightning and Eclair";
|
|
|
|
homepage = "https://github.com/Ride-The-Lightning/RTL";
|
|
|
|
license = licenses.mit;
|
2022-12-18 04:13:46 -08:00
|
|
|
maintainers = with maintainers; [ nixbitcoin erikarvstedt ];
|
2021-12-14 10:51:23 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2022-08-21 05:41:37 -07:00
|
|
|
}; in self
|