2022-08-21 05:41:38 -07:00
|
|
|
{ lib
|
|
|
|
, stdenvNoCC
|
|
|
|
, nodejs-16_x
|
|
|
|
, nodejs-slim-16_x
|
|
|
|
, fetchNodeModules
|
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
|
|
|
, rsync
|
|
|
|
}:
|
|
|
|
let self = stdenvNoCC.mkDerivation {
|
|
|
|
pname = "clightning-rest";
|
2022-08-27 05:08:48 -07:00
|
|
|
version = "0.9.0";
|
2022-08-21 05:41:38 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/Ride-The-Lightning/c-lightning-REST/archive/refs/tags/v${self.version}.tar.gz";
|
2022-08-27 05:08:48 -07:00
|
|
|
hash = "sha256-1thorV/UivDDH7oqjfm8VTd47LYSGooR2yEoETgBOH4=";
|
2022-08-21 05:41:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
nodejs = nodejs-16_x;
|
|
|
|
nodejsRuntime = nodejs-slim-16_x;
|
|
|
|
|
|
|
|
nodeModules = fetchNodeModules {
|
|
|
|
inherit (self) src nodejs;
|
2022-08-27 05:08:48 -07:00
|
|
|
hash = "sha256-rQrAt2BDmNMUCVWxTJN3qoPonKlRWeJ8C4ZvF/gPygk=";
|
2022-08-21 05:41:38 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-12-14 10:51:22 -08:00
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
2022-08-21 05:41:38 -07:00
|
|
|
phases = "unpackPhase patchPhase installPhase";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
dest=$out/lib/node_modules/clightning-rest
|
|
|
|
mkdir -p $dest
|
|
|
|
${rsync}/bin/rsync -a --inplace * ${self.nodeModules}/lib/node_modules \
|
|
|
|
--exclude=/{screenshots,'*.Dockerfile'} \
|
|
|
|
$dest
|
|
|
|
|
2022-08-25 12:00:00 -07:00
|
|
|
makeWrapper ${self.nodejsRuntime}/bin/node "$out/bin/cl-rest" \
|
|
|
|
--add-flags "$dest/cl-rest.js"
|
2022-08-21 05:41:38 -07:00
|
|
|
|
|
|
|
runHook postInstall
|
2021-12-14 10:51:22 -08:00
|
|
|
'';
|
2021-12-14 10:51:23 -08:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "REST API for C-Lightning";
|
|
|
|
homepage = "https://github.com/Ride-The-Lightning/c-lightning-REST";
|
|
|
|
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:38 -07:00
|
|
|
}; in self
|