On 11/09/16 18:01, Alex Kost wrote:
Christopher Baines (2016-09-11 11:00 +0100) wrote:
* gnu/packages/mpd.scm (sonata): New variable.
---
gnu/packages/mpd.scm | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 279ec68..8b1b071 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -27,10 +27,14 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
+ #:use-module ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
This line is not needed. You use it in the #:modules argument in the
package definition, but it should not be put in the top level
'define-module' form.
Ah, yep, that makes sense. Thanks Alex, and thanks for fixing Leo.