Use define-public instead of #:export in package modules

pull/1/head
anemofilia 2023-08-09 20:27:27 -03:00
parent bd51413aee
commit 70a7a49f33
No known key found for this signature in database
GPG Key ID: 5A8F3D62C87A2B33
2 changed files with 4 additions and 6 deletions

View File

@ -1,10 +1,9 @@
(define-module (radix packages linux)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (gnu packages linux)
#:export (thinkfan-next))
#:use-module (gnu packages linux))
(define thinkfan-next
(define-public thinkfan-next
(package
(inherit thinkfan)
(arguments

View File

@ -1,9 +1,8 @@
(define-module (radix packages wm)
#:use-module (gnu packages wm)
#:use-module (guix transformations)
#:export (awesome-next))
#:use-module (guix transformations))
(define awesome-next
(define-public awesome-next
((options->transformation
`((with-branch . "awesome=master")
(with-git-url . "awesome=https://github.com/awesomeWM/awesome")))