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-public racket-minimal-bc-cgc (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 (package
(name "racket-minimal-bc-cgc") (name "racket-minimal-bc-cgc")
(version %racket-version) (version %racket-version)
@ -262,13 +265,9 @@ also be used for embedding applications without the annotations needed in C
code to use the 3M garbage collector.") code to use the 3M garbage collector.")
;; https://download.racket-lang.org/license.html ;; https://download.racket-lang.org/license.html
;; The LGPL components are only used by Racket BC. ;; 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)))))
;; 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)))))
(define-public racket-minimal-bc-3m (define-public racket-minimal-bc-3m
(hidden-package
(package (package
(inherit racket-minimal-bc-cgc) (inherit racket-minimal-bc-cgc)
(name "racket-minimal-bc-3m") (name "racket-minimal-bc-3m")
@ -292,7 +291,7 @@ This package is the normal implementation of Racket BC with a precise garbage
collector, 3M (``Moving Memory Manager'').") collector, 3M (``Moving Memory Manager'').")
;; https://download.racket-lang.org/license.html ;; https://download.racket-lang.org/license.html
;; The LGPL components are only used by Racket BC. ;; 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 (define-public racket-minimal
(package (package