diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 11:32:14 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:17 +0100 |
commit | 69d0ed6182035d1154760a0ac103f6e99a653fd0 (patch) | |
tree | 58a632416eb2ae3eb4a34bdba970b21d5451f737 | |
parent | 0dc33be73253d4fbd1b8fc7afd2b47b7f70a5d11 (diff) |
Include zlib as dependency of cpprestsdk
-rw-r--r-- | private/komodo/cpprestsdk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/private/komodo/cpprestsdk.scm b/private/komodo/cpprestsdk.scm index 9b0ea28..990be36 100644 --- a/private/komodo/cpprestsdk.scm +++ b/private/komodo/cpprestsdk.scm @@ -1,5 +1,6 @@ (define-module (cpprestsdk) #:use-module (gnu packages boost) + #:use-module (gnu packages compression) #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module (guix build-system cmake) @@ -25,7 +26,7 @@ (content-hash "09pb16aqs4x6xgsvj6fpwxzqa4px11j5qigcpjsb3hbsbkvsd9nc")))) (build-system cmake-build-system) - (native-inputs (list boost openssl websocketpp)) + (native-inputs (list boost openssl websocketpp zlib)) (synopsis "The Microsoft C++ REST SDK") (description (string-append |