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-20 12:35:17 +0100 |
commit | ab5e69ab34ba8d38c83362e2c71e516ee75d7352 (patch) | |
tree | 38e764d638f93302343ccb2be8655fedf8d460f5 | |
parent | 12b068c492689568f04e4ff59416ff11ee53b0b5 (diff) |
Include zlib 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 21cab55..bca10d4 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 |