diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 08:57:35 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:17 +0100 |
commit | bcecba6e42efe0eee11a96db54fa8af49fbf0ec4 (patch) | |
tree | 780fdf48dd71c0494f75b64d42afa05056da826c | |
parent | 7cc1fdfb6e0274b49644fe0f5890c07a40d9cbef (diff) |
Include nlohmann-json as dependency of komodo-wallet
-rw-r--r-- | private/komodo/komodo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/private/komodo/komodo.scm b/private/komodo/komodo.scm index a4d8ff2..653735c 100644 --- a/private/komodo/komodo.scm +++ b/private/komodo/komodo.scm @@ -1,4 +1,5 @@ (define-module (komodo) + #:use-module (gnu packages cpp) #:use-module (gnu packages game-development) #:use-module (gnu packages pretty-print) #:use-module (gnu packages version-control) @@ -43,7 +44,7 @@ "# include(vcpkg_prerequisites)"))))) #:configure-flags #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON"))) - (native-inputs (list entt fmt git)) + (native-inputs (list entt fmt git nlohmann-json)) (synopsis "Komodo Wallet Desktop GUI") (description (string-append |