John Darrington <j...@gnu.org> skribis: > * gnu/packages/games.scm (xboing): New variable.
[...] > + (inputs `(("libx11" ,libx11) > + ("libxext" ,libxext) > + ("libxpm" ,libxpm))) > + (native-inputs `(("imake" ,imake) > + ("inetutils" ,inetutils) > + ("makedepend" ,makedepend))) Please align opening parenthesis and use only spaces, no tabs (for Emacs 23 and later, .dir-locals.el normally sets it up.) > + (license x11-style))) ‘x11-style’ is a procedure, so it should be: (x11-style URI [COMMENT]) Make sure it’s not really ‘x11’ or ‘expat’. TIA, Ludo’.