summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-13 19:39:30 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-17 12:59:53 +0100
commit80dc53da11c4cc00350b908fbc0e49ae5a053f3a (patch)
tree1c04bb4e5b6a53248bb7058dfbd9801656c22985
parent004c05b6b180aa7cfe5ea215faccbe0425177356 (diff)
Include nlohmann-json as dependency for cppdap
-rw-r--r--private/komodo/cppdap.scm6
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