> > + (arguments > > + `(#:tests? #f ; no "check" target > > + #:make-flags > > + (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) > > + #:phases > > + (modify-phases %standard-phases > > + (add-after 'unpack 'skip-dssi-binaries > > + (lambda _ > > + (substitute* "Makefile" > > + (("cp -r bin.*-dssi.*$") ":;\n")) > > + #t)) > > Can you expand on this comment? What are these binaries, and why do > we > need to prevent them from being installed? I was having trouble building them, but I managed to get them building now (was missing liblo). Removed this part > > > + (license `(license:isc license:gpl3 license:lgpl3 license:mit > > license:gpl2)))) > > Does this work? I would expect each of the license entries to have > to > be 'unquoted', i.e. `(,license:isc). Alternatively you can use (list > ...) here. > > When a package has multiple licenses like here, please add a comment > about it. Is there a "main" license, (roughly) which files are under > what license? Fixed and added more info