diff options
Diffstat (limited to 'gnu/packages/hyperledger.scm')
-rw-r--r-- | gnu/packages/hyperledger.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/hyperledger.scm b/gnu/packages/hyperledger.scm index 2a4b87e927..45436da7db 100644 --- a/gnu/packages/hyperledger.scm +++ b/gnu/packages/hyperledger.scm @@ -166,8 +166,7 @@ link-time. New implementations can be added as well.") ;; https://github.com/hyperledger/iroha/commit/4dc710d2e9a067af866771318f673c7392797e48 ;; Backport unversioned fmt dependency, remove next update: (substitute* "libs/logger/logger.hpp" - (("fmt::v5") "fmt")) - #t)))) + (("fmt::v5") "fmt")))))) (build-system cmake-build-system) (arguments `(#:configure-flags @@ -179,7 +178,11 @@ link-time. New implementations can be added as well.") #:test-target ".")) ;; https://github.com/hyperledger/iroha/blob/master/vcpkg/VCPKG_DEPS_LIST (native-inputs - (list fmt googletest rapidjson rxcpp spdlog)) + (list fmt-8 + googletest + rapidjson + rxcpp + spdlog)) (inputs (list boost gflags |