{ lib , stdenvNoCC , nodejs-16_x , nodejs-slim-16_x , fetchNodeModules , fetchpatch , fetchurl , applyPatches , makeWrapper }: let self = stdenvNoCC.mkDerivation { pname = "rtl"; version = "0.13.1"; src = applyPatches { src = fetchurl { url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz"; hash = "sha256-k40xwDDJxny1nPN2xz60WfbinxMNM0QPdglibO2anZw="; }; patches = [ # Move non-runtime deps to `devDependencies` # https://github.com/Ride-The-Lightning/RTL/pull/1070 (fetchpatch { url = "https://github.com/Ride-The-Lightning/RTL/pull/1070.patch"; sha256 = "sha256-esDkYI27SNzj2AhYHS9XqlW0r2mr+o0K4A6PUE2kbWU="; }) ]; }; passthru = { nodejs = nodejs-16_x; nodejsRuntime = nodejs-slim-16_x; nodeModules = fetchNodeModules { inherit (self) src nodejs; hash = "sha256-bYZ6snfXhDZ3MMga45EHVrPZxC0/Q0e3AgCgMBire64="; }; }; 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 earvstedt ]; platforms = platforms.unix; }; }; in self