Merge pull request #169604 from lourkeur/update/chia-plotter
chia-plotter: 1.1.7 -> 1.1.8
This commit is contained in:
commit
8169990346
2 changed files with 37 additions and 17 deletions
|
@ -9,13 +9,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "chia-plotter";
|
pname = "chia-plotter";
|
||||||
version = "1.1.7";
|
version = "1.1.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "madMAx43v3r";
|
owner = "madMAx43v3r";
|
||||||
repo = "chia-plotter";
|
repo = "chia-plotter";
|
||||||
rev = "18cad340858f0dbcc8dafd0bda1ce1af0fe58c65";
|
rev = "9d7fd929919d1adde6404cb4718a665a81bcef6d";
|
||||||
sha256 = "sha256-lXjeqcjn3+LtnVYngdM1T3on7V7wez4oOAZ0RpKJXMM=";
|
sha256 = "sha256-TMAly+Qof2DHPRHqE1nZuHQaCeMo0jEd8MWy4OlXrcs=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -25,10 +25,17 @@ stdenv.mkDerivation {
|
||||||
src = ./dont_fetch_dependencies.patch;
|
src = ./dont_fetch_dependencies.patch;
|
||||||
pybind11_src = python3Packages.pybind11.src;
|
pybind11_src = python3Packages.pybind11.src;
|
||||||
relic_src = fetchFromGitHub {
|
relic_src = fetchFromGitHub {
|
||||||
owner = "relic-toolkit";
|
owner = "Chia-Network";
|
||||||
repo = "relic";
|
repo = "relic";
|
||||||
rev = "1885ae3b681c423c72b65ce1fe70910142cf941c";
|
rev = "1d98e5abf3ca5b14fd729bd5bcced88ea70ecfd7";
|
||||||
hash = "sha256-tsSZTcssl8t7Nqdex4BesgQ+ACPgTdtHnJFvS9josN0=";
|
hash = "sha256-IfTD8DvTEXeLUoKe4Ejafb+PEJW5DV/VXRYuutwGQHU=";
|
||||||
|
};
|
||||||
|
sodium_src = fetchFromGitHub {
|
||||||
|
owner = "AmineKhaldi";
|
||||||
|
repo = "libsodium-cmake";
|
||||||
|
rev = "f73a3fe1afdc4e37ac5fe0ddd401bf521f6bba65"; # pinned by upstream
|
||||||
|
sha256 = "sha256-lGz7o6DQVAuEc7yTp8bYS2kwjzHwGaNjugDi1ruRJOA=";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,30 +11,43 @@ index 255e3bb..5f99c3a 100644
|
||||||
+ SOURCE_DIR @pybind11_src@
|
+ SOURCE_DIR @pybind11_src@
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(pybind11 relic)
|
FetchContent_MakeAvailable(pybind11 relic)
|
||||||
|
|
||||||
diff --git a/lib/bls-signatures/src/CMakeLists.txt b/lib/bls-signatures/src/CMakeLists.txt
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
index b762b5d..e06073b 100644
|
index 6922167..23d8da6 100644
|
||||||
--- a/lib/bls-signatures/src/CMakeLists.txt
|
--- a/lib/bls-signatures/CMakeLists.txt
|
||||||
+++ b/lib/bls-signatures/src/CMakeLists.txt
|
+++ b/lib/bls-signatures/CMakeLists.txt
|
||||||
@@ -4,18 +4,11 @@ set (CMAKE_CXX_STANDARD 17)
|
@@ -31,29 +31,18 @@ set(CMAKE_MODULE_PATH
|
||||||
# CMake 3.14+
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
|
|
||||||
|
FetchContent_Declare(Sodium
|
||||||
|
- GIT_REPOSITORY https://github.com/AmineKhaldi/libsodium-cmake.git
|
||||||
|
- # Latest commit at the moment this was added here
|
||||||
|
- # Anchored to libsodium v1.0.18
|
||||||
|
- GIT_TAG f73a3fe1afdc4e37ac5fe0ddd401bf521f6bba65
|
||||||
|
+ URL @sodium_src@
|
||||||
|
)
|
||||||
|
set(SODIUM_PCH "on" CACHE STRING "")
|
||||||
|
set(SODIUM_DISABLE_TESTS "on" CACHE STRING "")
|
||||||
|
set(SODIUM_CHIA_MINIMAL "on" CACHE STRING "")
|
||||||
|
FetchContent_MakeAvailable(Sodium)
|
||||||
|
|
||||||
-if (DEFINED ENV{RELIC_MAIN})
|
-if (DEFINED ENV{RELIC_MAIN})
|
||||||
- set(RELIC_GIT_TAG "origin/main")
|
- set(RELIC_GIT_TAG "origin/main")
|
||||||
-else ()
|
-else ()
|
||||||
- set(RELIC_GIT_TAG "1885ae3b681c423c72b65ce1fe70910142cf941c")
|
- # This is currently anchored to upstream aecdcae7956f542fbee2392c1f0feb0a8ac41dc5
|
||||||
|
- set(RELIC_GIT_TAG "1d98e5abf3ca5b14fd729bd5bcced88ea70ecfd7")
|
||||||
-endif ()
|
-endif ()
|
||||||
-
|
-
|
||||||
message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}")
|
message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}")
|
||||||
|
|
||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
relic
|
relic
|
||||||
- GIT_REPOSITORY https://github.com/relic-toolkit/relic.git
|
- GIT_REPOSITORY https://github.com/Chia-Network/relic.git
|
||||||
- GIT_TAG ${RELIC_GIT_TAG}
|
- GIT_TAG ${RELIC_GIT_TAG}
|
||||||
+ SOURCE_DIR @relic_src@
|
+ SOURCE_DIR @relic_src@
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(relic)
|
|
||||||
|
# Relic related options
|
||||||
|
|
||||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
index 970ec74..948441a 100644
|
index 970ec74..948441a 100644
|
||||||
|
|
Loading…
Reference in a new issue