cjdns-tools: remove usage of with lib

(cherry picked from commit 72626fff03)
This commit is contained in:
Amadej Kastelic
2025-07-23 22:18:59 +02:00
committed by Pavol Rusnak
parent 5422ce5058
commit 38ffa481f2

View File

@@ -37,12 +37,12 @@ stdenv.mkDerivation {
cp -r node_modules $out/node_modules
'';
meta = with lib; {
meta = {
homepage = "https://github.com/cjdelisle/cjdns";
description = "Tools for cjdns managment";
license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.linux ++ platforms.darwin;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
mainProgram = "cjdns-tools";
};
}