Julien Lepiller writes: > * gnu/packages/games.scm (lugaru): New variable. [...] > + (arguments > + `(#:configure-flags > + (list "-DSYSTEM_INSTALL=ON") > + #:tests? #f)) Please specify whether there are no tests, or they need something not available in the build environment, missing dependencies etc. > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("sdl2" ,sdl2) > + ("glu" ,glu) > + ("libjpeg" ,libjpeg-turbo) > + ("libpng" ,libpng) > + ("openal" ,openal) > + ("vorbis" ,libvorbis) > + ("zlib" ,zlib))) > + (home-page "https://osslugaru.gitlab.io") > + (synopsis "Cross-platform third-person action game") > + (description "The main character, Turner, is an anthropomorphic rebel bunny > +rabbit with impressive combat skills. In his quest to find those responsible > +for slaughtering his village, he uncovers a far-reaching conspiracy involving > +the corrupt leaders of the rabbit republic and the starving wolves from a > +nearby den. Turner takes it upon himself to fight against their plot and save > +his fellow rabbits from slavery.") > + (license (list license:gpl2+ license:cc-by-sa3.0)))) We usually add comments about what is covered by which license as well. In this case it's a safe guess that assets are CC-BY-SA, but it's nice to have it explicit regardless. Other than that looks good!