diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-13 23:28:15 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:16 +0100 |
commit | 86b0fc9abb6a3b24deaf717f0c9f5cf002c46b80 (patch) | |
tree | 94994bae713519ff5d3605bde24ee2617b4fcca7 /private/komodo | |
parent | 7f1a999c9521eda5444e7d2a21e34c8732b9289e (diff) |
Include nlohmann-json in cmake-bootstrap
Diffstat (limited to 'private/komodo')
-rw-r--r-- | private/komodo/cmake.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/private/komodo/cmake.scm b/private/komodo/cmake.scm index bdaca09..108ad21 100644 --- a/private/komodo/cmake.scm +++ b/private/komodo/cmake.scm @@ -44,6 +44,7 @@ #:use-module (gnu packages) #:use-module (gnu packages backup) #:use-module (gnu packages compression) + #:use-module (gnu packages cpp) #:use-module (gnu packages crypto) #:use-module (gnu packages curl) #:use-module (gnu packages file) @@ -185,6 +186,7 @@ using the CMake build system.") (string-append "--parallel=" parallel-job-count) (string-append "--prefix=" #$output) "--system-libs" + "--no-system-cppdap" ;; By default, the man pages and other docs land ;; in PREFIX/man and PREFIX/doc, but we want them ;; in share/{man,doc}. Note that unlike @@ -237,7 +239,9 @@ using the CMake build system.") "!defined(__GNU__)"))))) #~())))) (inputs - (list libuv bzip2 cppdap curl expat file jsoncpp libarchive rhash zlib)) + (list + libuv bzip2 cppdap curl expat file jsoncpp libarchive nlohmann-json rhash + zlib)) (native-search-paths (list (search-path-specification (variable "CMAKE_PREFIX_PATH") |