gnu: cmake: Remove bundled LibUV.
* gnu/packages/cmake.scm (cmake-minimal)[source](snippet): Delete 'Utilities/cmlibuv'.
This commit is contained in:
parent
013c5c23f9
commit
11f4d87756
1 changed files with 5 additions and 1 deletions
|
@ -246,7 +246,11 @@ (define-public cmake-minimal
|
||||||
(snippet
|
(snippet
|
||||||
(match (origin-snippet (package-source cmake-bootstrap))
|
(match (origin-snippet (package-source cmake-bootstrap))
|
||||||
((begin exp ...)
|
((begin exp ...)
|
||||||
(append '(begin (delete-file-recursively "Utilities/cmjsoncpp"))
|
;; Now we can delete the remaining software bundles.
|
||||||
|
(append '(begin
|
||||||
|
(for-each delete-file-recursively
|
||||||
|
'("Utilities/cmjsoncpp"
|
||||||
|
"Utilities/cmlibuv")))
|
||||||
exp))))))
|
exp))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("curl" ,curl)
|
`(("curl" ,curl)
|
||||||
|
|
Loading…
Reference in a new issue