mbakke pushed a commit to branch core-updates
in repository guix.
commit 11f4d87756dfc83656021c5aae00850724997ee0
Author: Marius Bakke <[email protected]>
AuthorDate: Sun Jan 26 12:48:34 2020 +0100
gnu: cmake: Remove bundled LibUV.
* gnu/packages/cmake.scm (cmake-minimal)[source](snippet): Delete
'Utilities/cmlibuv'.
---
gnu/packages/cmake.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index ffb2eeb..ecabc8a 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -246,7 +246,11 @@ and workspaces that can be used in the compiler
environment of your choice.")
(snippet
(match (origin-snippet (package-source cmake-bootstrap))
((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))))))
(native-inputs
`(("curl" ,curl)