617ed4c8e8
- Use `fetch-node-modules` to remove the 4161 line file `node-packages.nix` - Only use nodejs-slim as a runtime dependency - Shrink package size by >500M by excluding certain dev-only dependencies
75 lines
1.8 KiB
Nix
75 lines
1.8 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.0";
|
|
|
|
src = applyPatches {
|
|
src = fetchurl {
|
|
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
|
|
hash = "sha256-6eopIO5ge6+vkNvZomjAB6e5Qi2kkhXpnSOWQQm53R0=";
|
|
};
|
|
|
|
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-LmCrf+lIXz9i9NVALYk9IOBUoPbW8fj+fUsyVJgAANI=";
|
|
};
|
|
};
|
|
|
|
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
|