guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: ghc-call-stack-boot: Make it a hidden package.


From: guix-commits
Subject: 01/01: gnu: ghc-call-stack-boot: Make it a hidden package.
Date: Fri, 14 Dec 2018 11:14:58 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit bd208a13ef4c203cf9035c0ccf454a60c1949c58
Author: Christopher Baines <address@hidden>
Date:   Thu Dec 13 13:56:41 2018 +0100

    gnu: ghc-call-stack-boot: Make it a hidden package.
    
    This package doesn't sound like it should be directly used, so hide it.
    
    * gnu/packages/haskell.scm (ghc-call-stack-boot): Use hidden-package to hide
    the package.
---
 gnu/packages/haskell.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 57435dc..8d0e2ae 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -5069,10 +5069,11 @@ call stacks with different versions of the compiler.")
 ;; This is used as an input to ghc-hunit.  We cannot use ghc-call-stack there,
 ;; because it depends on ghc-nanospec, which depends on ghc-hunit.
 (define-public ghc-call-stack-boot
-  (package
-    (inherit ghc-call-stack)
-    (arguments '(#:tests? #f))
-    (inputs '())))
+  (hidden-package
+   (package
+     (inherit ghc-call-stack)
+     (arguments '(#:tests? #f))
+     (inputs '()))))
 
 (define-public ghc-statevar
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]