mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
p2pool: reduce usage of with lib;
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user