This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 709ca6c gnu: libgc/static-libs: Mark it as hidden.
709ca6c is described below
commit 709ca6c9824e4bbb0d81959b885248294fb062ae
Author: Christopher Baines <[email protected]>
AuthorDate: Sun Apr 26 19:56:17 2020 +0100
gnu: libgc/static-libs: Mark it as hidden.
* gnu/packages/bdw-gc.scm (libgc/static-libs)[properties] Set hidden? to #t.
---
gnu/packages/bdw-gc.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index 112a161..50e4951 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -91,7 +91,8 @@ C or C++ programs, though that is not its primary goal.")
libgc
(arguments (substitute-keyword-arguments (package-arguments libgc)
((#:configure-flags flags ''())
- `(cons "--enable-static" ,flags))))))
+ `(cons "--enable-static" ,flags))))
+ (properties '((hidden? . #t)))))
(define-public libgc-7
(package