p2pool: reduce usage of with lib;

This commit is contained in:
06kellyjac
2025-08-21 11:48:37 +01:00
parent 3cdf0139ca
commit a2e17a2f14

View File

@@ -54,16 +54,16 @@ stdenv.mkDerivation (finalAttrs: {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
description = "Decentralized pool for Monero mining";
homepage = "https://github.com/SChernykh/p2pool";
license = licenses.gpl3Only;
maintainers = with maintainers; [
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
ratsclub
JacoMalan1
];
mainProgram = "p2pool";
platforms = platforms.all;
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
})