Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
cjdns,
|
|
nodejs,
|
|
makeWrapper,
|
|
lib,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "cjdns-tools";
|
|
version = cjdns.version;
|
|
|
|
src = cjdns.src;
|
|
|
|
buildInputs = [
|
|
nodejs
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
buildPhase = ''
|
|
patchShebangs tools
|
|
|
|
sed -e "s|'password': 'NONE'|'password': Fs.readFileSync('/etc/cjdns.keys').toString().split('\\\\n').map(v => v.split('=')).filter(v => v[0] === 'CJDNS_ADMIN_PASSWORD').map(v => v[1])[0]|g" \
|
|
-i tools/lib/cjdnsadmin/cjdnsadmin.js
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cat ${./wrapper.sh} | sed "s|@@out@@|$out|g" > $out/bin/cjdns-tools
|
|
chmod +x $out/bin/cjdns-tools
|
|
|
|
cp -r tools $out/tools
|
|
find $out/tools -maxdepth 1 -type f -exec chmod -v a+x {} \;
|
|
cp -r node_modules $out/node_modules
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/cjdelisle/cjdns";
|
|
description = "Tools for cjdns managment";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
mainProgram = "cjdns-tools";
|
|
};
|
|
}
|