Use define-public instead of #:export in package modules
parent
bd51413aee
commit
70a7a49f33
|
@ -1,10 +1,9 @@
|
||||||
(define-module (radix packages linux)
|
(define-module (radix packages linux)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux))
|
||||||
#:export (thinkfan-next))
|
|
||||||
|
|
||||||
(define thinkfan-next
|
(define-public thinkfan-next
|
||||||
(package
|
(package
|
||||||
(inherit thinkfan)
|
(inherit thinkfan)
|
||||||
(arguments
|
(arguments
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
(define-module (radix packages wm)
|
(define-module (radix packages wm)
|
||||||
#:use-module (gnu packages wm)
|
#:use-module (gnu packages wm)
|
||||||
#:use-module (guix transformations)
|
#:use-module (guix transformations))
|
||||||
#:export (awesome-next))
|
|
||||||
|
|
||||||
(define awesome-next
|
(define-public awesome-next
|
||||||
((options->transformation
|
((options->transformation
|
||||||
`((with-branch . "awesome=master")
|
`((with-branch . "awesome=master")
|
||||||
(with-git-url . "awesome=https://github.com/awesomeWM/awesome")))
|
(with-git-url . "awesome=https://github.com/awesomeWM/awesome")))
|
||||||
|
|
Loading…
Reference in New Issue