Use define-public instead of #:export in package modules
parent
bd51413aee
commit
70a7a49f33
|
@ -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
|
||||
|
|
|
@ -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")))
|
||||
|
|
Loading…
Reference in New Issue