3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: cmake: Remove bundled LibUV.

* gnu/packages/cmake.scm (cmake-minimal)[source](snippet): Delete
'Utilities/cmlibuv'.
This commit is contained in:
Marius Bakke 2020-01-26 12:48:34 +01:00
parent 013c5c23f9
commit 11f4d87756
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -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)