Merge pull request #217801 from wegank/xmrig-mo-aarch64

xmrig-mo: unbreak on more platforms
This commit is contained in:
Weijia Wang 2023-02-23 07:10:22 +02:00 committed by GitHub
commit 739f4d5ee5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -12,11 +12,10 @@ xmrig.overrideAttrs (oldAttrs: rec {
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "A fork of the XMRig CPU miner with support for algorithm switching";
homepage = "https://github.com/MoneroOcean/xmrig";
license = licenses.gpl3Plus;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
platforms = platforms.unix;
maintainers = with maintainers; [ j0hax ];
};
})

View file

@ -31438,7 +31438,7 @@ with pkgs;
xmrig = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig { };
xmrig-mo = callPackage ../applications/misc/xmrig/moneroocean.nix { };
xmrig-mo = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig/moneroocean.nix { };
xmrig-proxy = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig/proxy.nix { };