mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
48 lines
1.0 KiB
Nix
48 lines
1.0 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 = with lib; {
|
|
homepage = "https://github.com/cjdelisle/cjdns";
|
|
description = "Tools for cjdns managment";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "cjdns-tools";
|
|
};
|
|
}
|