diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 12:40:58 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-17 12:59:55 +0100 |
commit | 95479d30a7b7c797fe51c85238023f1a76ad6c31 (patch) | |
tree | 75286d7ebab049fdef0da73df3a6112189007ca1 /private | |
parent | cc5031872a5e9318aa3d3df3e0a85b3b3487ffef (diff) |
Include zlib as dependency of komodo-wallet
Diffstat (limited to 'private')
-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 21cab55d58..bca10d44d3 100644 --- a/private/komodo/komodo.scm +++ b/private/komodo/komodo.scm @@ -2,6 +2,7 @@ #:use-module (cpprestsdk) #:use-module (gnu packages calendar) #:use-module (gnu packages check) + #:use-module (gnu packages compression) #:use-module (gnu packages cpp) #:use-module (gnu packages game-development) #:use-module (gnu packages logging) @@ -49,7 +50,8 @@ #:configure-flags #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON"))) (native-inputs - (list cpprestsdk date doctest entt fmt git nlohmann-json range-v3 spdlog)) + (list + cpprestsdk date doctest entt fmt git nlohmann-json range-v3 spdlog zlib)) (synopsis "Komodo Wallet Desktop GUI") (description (string-append |