diff options
-rw-r--r-- | gnu/packages/mastodon.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/mastodon.scm b/gnu/packages/mastodon.scm index d1efc55c9f..a50ed7fdf9 100644 --- a/gnu/packages/mastodon.scm +++ b/gnu/packages/mastodon.scm @@ -123,10 +123,9 @@ Features include: (string-append (assoc-ref outputs "out") "/bin/tootle")) #t))))) (native-inputs - `(("gettext" ,gettext-minimal) - ("glib:bin" ,glib "bin") ; for glib-compile-resources - ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) - ("pkg-config" ,pkg-config))) + (list gettext-minimal + `(,glib "bin") ; for glib-compile-resources + gsettings-desktop-schemas pkg-config)) (inputs (list glib-networking gtk+ |