11 lines
308 B
Scheme
11 lines
308 B
Scheme
(define-module (radix packages wm)
|
|
#:use-module (gnu packages wm)
|
|
#:use-module (guix transformations)
|
|
#:export (awesome-next))
|
|
|
|
(define awesome-next
|
|
((options->transformation
|
|
`((with-branch . "awesome=master")
|
|
(with-git-url . "awesome=https://github.com/awesomeWM/awesome")))
|
|
awesome))
|