[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: cmake: Only build ccmake on user facing cmake.
From: |
guix-commits |
Subject: |
02/03: gnu: cmake: Only build ccmake on user facing cmake. |
Date: |
Thu, 19 Nov 2020 11:53:16 -0500 (EST) |
efraim pushed a commit to branch core-updates
in repository guix.
commit 8d16f302e69bb61264e51611d7bad1ce7213ab3f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Nov 19 18:44:52 2020 +0200
gnu: cmake: Only build ccmake on user facing cmake.
* gnu/packages/cmake.scm (cmake-bootstrap)[inputs]: Remove ncurses.
(cmake)[inputs]: Add ncurses.
---
gnu/packages/cmake.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index cf3bc40..5eef3c8 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -211,7 +211,6 @@
,@(if (hurd-target?)
'()
`(("libuv" ,libuv))) ;not supported on the Hurd
- ("ncurses" ,ncurses) ;required for ccmake
("rhash" ,rhash)
("zlib" ,zlib)))
(native-search-paths
@@ -330,6 +329,9 @@ and workspaces that can be used in the compiler environment
of your choice.")
(string-append doc html))
(delete-file-recursively (string-append out html))
#t)))))))
+ (inputs
+ `(("ncurses" ,ncurses) ;required for ccmake
+ ,@(package-inputs cmake-minimal)))
;; Extra inputs required to build the documentation.
(native-inputs
`(,@(package-native-inputs cmake-minimal)