diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-13 19:26:57 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:16 +0100 |
commit | a80b52daf9415f8522ea85152bf8053cae88f9b2 (patch) | |
tree | 572cee84fbd5efae69b1ad6c7df5f710945f1282 /private/komodo/cmake.scm | |
parent | f8ea0e9ba66b4ea82b5fe8f4fdfc654a0b3f5c43 (diff) |
Implement initial definition of cppdap for cmake update
Diffstat (limited to 'private/komodo/cmake.scm')
-rw-r--r-- | private/komodo/cmake.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/private/komodo/cmake.scm b/private/komodo/cmake.scm index 74b3a02..bdaca09 100644 --- a/private/komodo/cmake.scm +++ b/private/komodo/cmake.scm @@ -29,6 +29,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (cmake) + #:use-module (cppdap) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix gexp) @@ -236,7 +237,7 @@ using the CMake build system.") "!defined(__GNU__)"))))) #~())))) (inputs - (list libuv bzip2 curl expat file jsoncpp libarchive rhash zlib)) + (list libuv bzip2 cppdap curl expat file jsoncpp libarchive rhash zlib)) (native-search-paths (list (search-path-specification (variable "CMAKE_PREFIX_PATH") |