me
/
guix
Archived
1
0
Fork 0

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.
master
Christopher Baines 2018-12-13 13:56:41 +01:00
parent adb158b739
commit bd208a13ef
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 5 additions and 4 deletions

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