mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: cmake: Only build ccmake on user facing cmake.
* gnu/packages/cmake.scm (cmake-bootstrap)[inputs]: Remove ncurses. (cmake)[inputs]: Add ncurses.
This commit is contained in:
parent
bf8f33c31f
commit
8d16f302e6
1 changed files with 3 additions and 1 deletions
|
@ -211,7 +211,6 @@ (define preserved-files
|
||||||
,@(if (hurd-target?)
|
,@(if (hurd-target?)
|
||||||
'()
|
'()
|
||||||
`(("libuv" ,libuv))) ;not supported on the Hurd
|
`(("libuv" ,libuv))) ;not supported on the Hurd
|
||||||
("ncurses" ,ncurses) ;required for ccmake
|
|
||||||
("rhash" ,rhash)
|
("rhash" ,rhash)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
|
@ -330,6 +329,9 @@ (define-public cmake
|
||||||
(string-append doc html))
|
(string-append doc html))
|
||||||
(delete-file-recursively (string-append out html))
|
(delete-file-recursively (string-append out html))
|
||||||
#t)))))))
|
#t)))))))
|
||||||
|
(inputs
|
||||||
|
`(("ncurses" ,ncurses) ;required for ccmake
|
||||||
|
,@(package-inputs cmake-minimal)))
|
||||||
;; Extra inputs required to build the documentation.
|
;; Extra inputs required to build the documentation.
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(,@(package-native-inputs cmake-minimal)
|
`(,@(package-native-inputs cmake-minimal)
|
||||||
|
|
Loading…
Reference in a new issue