Skip to content

Commit

Permalink
wownero: 0.11.0.1 -> 0.11.3.0 (#371670)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored Jan 16, 2025
2 parents 1bda1e5 + 2e6b296 commit bb92628
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions pkgs/by-name/wo/wownero/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
fetchFromGitea,
cmake,
python3,
boost,
libsodium,
openssl,
Expand All @@ -28,36 +29,35 @@ let
rev = "633500ad8c8759995049ccd022107d1fa8a1bbc9";
hash = "sha256-26UmESotSWnQ21VbAYEappLpkEMyl0jiuCaezRYd/sE=";
};
randomwow = fetchFromGitHub {
owner = "wownero-project";
randomwow = fetchFromGitea {
domain = "codeberg.org";
owner = "wownero";
repo = "RandomWOW";
rev = "607bad48f3687c2490d90f8c55efa2dcd7cbc195";
hash = "sha256-CJv96TbPv1k/C7MQWEntE6khIRX1iIEiF9wEdsQGiFQ=";
rev = "27b099b6dd6fef6e17f58c6dfe00009e9c5df587";
hash = "sha256-imiXr4irXeKiQ6VMd6f3MJ46zvdvymnRdHGgnEvkT+o=";
};
in
stdenv.mkDerivation rec {
pname = "wownero";
version = "0.11.0.1";
version = "0.11.3.0";

src = fetchFromGitHub {
owner = "wownero-project";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "wownero";
repo = "wownero";
rev = "v${version}";
fetchSubmodules = false;
hash = "sha256-zmGsSbPpVwL0AhCQkdMKORruM5kYrrLe/BYfMphph8c=";
tag = "v${version}";
hash = "sha256-EioXFfUQ+CV6+Ipef1wbmc+taKI98I420J7eqzz15Ss=";
};

patches = [
# Fix gcc-13 build due to missing <cstdint> neaders
(fetchpatch {
name = "gcc-13.patch";
url = "https://git.wownero.com/wownero/wownero/commit/f983ac77805a494ea4a05a00398c553e1359aefd.patch";
hash = "sha256-9acQ4bHAKFR+lMgrpQyBmb+9YZYi1ywHoo1jBcIgmGs=";
})
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=cast-user-defined"
"-Wno-error=implicit-function-declaration"
"-Wno-error=int-conversion"
];

nativeBuildInputs = [
cmake
python3
];

buildInputs =
Expand Down

0 comments on commit bb92628

Please sign in to comment.