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.
This commit is contained in:
parent
adb158b739
commit
bd208a13ef
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue