1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-07 13:11:34 +02:00

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:
Christopher Baines
2018-12-13 13:56:41 +01:00
parent adb158b739
commit bd208a13ef
+5 -4
View File
@@ -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