diff options
-rw-r--r-- | private/komodo/cppdap.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/private/komodo/cppdap.scm b/private/komodo/cppdap.scm index 87f97eaecb..a307ce8d1e 100644 --- a/private/komodo/cppdap.scm +++ b/private/komodo/cppdap.scm @@ -1,4 +1,5 @@ (define-module (cppdap) + #:use-module (gnu packages cpp) #:use-module (guix build-system cmake) #:use-module (guix git-download) #:use-module @@ -22,6 +23,11 @@ (hash (content-hash "08bdsn0568hidq51fzw63ph0wkri8siid74fxp7sqvxjv04164pr")))) (build-system cmake-build-system) + (arguments + (list + #:configure-flags + '(list "-DCPPDAP_USE_EXTERNAL_NLOHMANN_JSON_PACKAGE=ON"))) + (native-inputs (list nlohmann-json)) (synopsis "C++ library for the Debug Adapter Protocol") (description (string-append |