Merge pull request #290978 from trofi/xmrig-mo-gcc-13-fix-update
xmrig-mo: 6.20.0-mo1 -> 6.21.0-mo2
This commit is contained in:
commit
edf0020d04
1 changed files with 18 additions and 3 deletions
|
@ -1,16 +1,31 @@
|
||||||
{ stdenv, fetchFromGitHub, lib, xmrig }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, xmrig
|
||||||
|
}:
|
||||||
|
|
||||||
xmrig.overrideAttrs (oldAttrs: rec {
|
xmrig.overrideAttrs (oldAttrs: rec {
|
||||||
pname = "xmrig-mo";
|
pname = "xmrig-mo";
|
||||||
version = "6.20.0-mo1";
|
version = "6.21.0-mo2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "MoneroOcean";
|
owner = "MoneroOcean";
|
||||||
repo = "xmrig";
|
repo = "xmrig";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-yHAipyZJXwH21u4YwjUqDCsXHVrI+eSnp4Iqt3AZC9A=";
|
hash = "sha256-OKyJcmhlY8gfDKyBf83KHhokp4qA8EDyessTwKReaD8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix build against gcc-13 due to missing <stdexcept> include
|
||||||
|
# https://github.com/MoneroOcean/xmrig/pull/123
|
||||||
|
(fetchpatch {
|
||||||
|
name = "gcc-13.patch";
|
||||||
|
url = "https://github.com/MoneroOcean/xmrig/commit/7d3ea51d68049c35e9d4c75732c751eefbc5ab29.patch";
|
||||||
|
hash = "sha256-iNrtZ8LxNJMzn8kXLhYGEFAy0ughfOZobDVRImpVPC0=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A fork of the XMRig CPU miner with support for algorithm switching";
|
description = "A fork of the XMRig CPU miner with support for algorithm switching";
|
||||||
homepage = "https://github.com/MoneroOcean/xmrig";
|
homepage = "https://github.com/MoneroOcean/xmrig";
|
||||||
|
|
Loading…
Reference in a new issue