gnu: racket-minimal: Adjust indentation.

* gnu/packages/racket.scm (racket-minimal-bc-cgc): Use 'hidden-package'
rather than 'properties'.
(racket-minimal-bc-3m): Remove redundant 'hidden-package' wrapper.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Philip McGrath 2022-02-27 16:29:03 -05:00 committed by Liliana Marie Prikler
parent daa91a49b2
commit ec031b3cf3
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -173,6 +173,9 @@ (define (make-unpack-nanopass+stex)
(define-public racket-minimal-bc-cgc
;; Eventually, it may make sense for some vm packages to not be hidden,
;; but this one is especially likely to remain hidden.
(hidden-package
(package
(name "racket-minimal-bc-cgc")
(version %racket-version)
@ -262,13 +265,9 @@ (define maybe-release-catalog
code to use the 3M garbage collector.")
;; https://download.racket-lang.org/license.html
;; The LGPL components are only used by Racket BC.
(license (list license:lgpl3+ license:asl2.0 license:expat))
;; Eventually, it may make sense for some vm packages to not be hidden,
;; but this one is especially likely to remain hidden.
(properties `((hidden? . #t)))))
(license (list license:lgpl3+ license:asl2.0 license:expat)))))
(define-public racket-minimal-bc-3m
(hidden-package
(package
(inherit racket-minimal-bc-cgc)
(name "racket-minimal-bc-3m")
@ -292,7 +291,7 @@ (define-public racket-minimal-bc-3m
collector, 3M (``Moving Memory Manager'').")
;; https://download.racket-lang.org/license.html
;; The LGPL components are only used by Racket BC.
(license (list license:lgpl3+ license:asl2.0 license:expat)))))
(license (list license:lgpl3+ license:asl2.0 license:expat))))
(define-public racket-minimal
(package