diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 09:05:00 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:17 +0100 |
commit | db4a49bcbc8da539fb4db078966cfd6e3927abfc (patch) | |
tree | 6416bc1cf3fe718e395832c67d34cdef82fe6b07 | |
parent | 42c5fc8f790987ec8fd85a88e5597adcbde00fa9 (diff) |
Include spdlog as dependency of komodo-wallet
-rw-r--r-- | private/komodo/komodo.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/private/komodo/komodo.scm b/private/komodo/komodo.scm index cde473e..51f730f 100644 --- a/private/komodo/komodo.scm +++ b/private/komodo/komodo.scm @@ -3,6 +3,7 @@ #:use-module (gnu packages check) #:use-module (gnu packages cpp) #:use-module (gnu packages game-development) + #:use-module (gnu packages logging) #:use-module (gnu packages pretty-print) #:use-module (gnu packages version-control) #:use-module (guix build utils) @@ -46,7 +47,8 @@ "# include(vcpkg_prerequisites)"))))) #:configure-flags #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON"))) - (native-inputs (list date doctest entt fmt git nlohmann-json range-v3)) + (native-inputs + (list date doctest entt fmt git nlohmann-json range-v3 spdlog)) (synopsis "Komodo Wallet Desktop GUI") (description (string-append |