diff options
author | bd <bdunahu@operationnull.com> | 2024-06-02 18:14:36 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-06-02 18:14:36 -0600 |
commit | febaf1247357246253fe711ea7ce646271393ca7 (patch) | |
tree | 57eb27ac2422fe782d26effb5e519759642e2248 /.config/guix/modules/mpd.scm | |
parent | 6e5f91b013bb7f245be43907b10906fbdabee41d (diff) |
Remove specification->package
Diffstat (limited to '.config/guix/modules/mpd.scm')
-rw-r--r-- | .config/guix/modules/mpd.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.config/guix/modules/mpd.scm b/.config/guix/modules/mpd.scm index 3c17b3e..45f8b76 100644 --- a/.config/guix/modules/mpd.scm +++ b/.config/guix/modules/mpd.scm @@ -1,5 +1,5 @@ (define-module (mpd) - #:use-module (gnu packages) + #:use-module (gnu packages mpd) #:use-module (gnu services) #:use-module (gnu services audio) #:use-module (ymir) @@ -8,14 +8,13 @@ (define bd-mpd-package - `(,@(map specification->package - '( - ;; if the user can't access mpd directly, - ;; emms will fail to parse the supported - ;; file types :) - "mpd" - "mpd-mpc" - )))) + (list + ;; if the user can't access mpd directly, + ;; emms will fail to parse the supported + ;; file types :) + mpd + mpd-mpc + )) (define bd-mpd-service (list |