Alex Kost <alez...@gmail.com> skribis: > Ludovic Courtès (2015-08-26 14:12 +0300) wrote: > >> Alex Kost <alez...@gmail.com> skribis: >> >>> Ludovic Courtès (2015-08-18 17:15 +0300) wrote: >>> >>>> Alex Kost <alez...@gmail.com> skribis: >>>> >>>>> * guix/scripts/build.scm (build-package): New procedure. >>>> >>>> [...] >>>> >>>>> +(define (build-package package . build-options) >>>>> + "Build PACKAGE using BUILD-OPTIONS." >>>>> + (with-store store >>>>> + (let* ((drv (run-with-store store >>>>> + (package->derivation package))) >>>>> + (drvs (list drv))) >>>>> + (apply set-build-options store build-options) >>>>> + (show-what-to-build store drvs) >>>>> + (build-derivations store drvs) >>>>> + (show-derivation-outputs drv)))) >>>> >>>> I think this doesn’t fit here because it isn’t actually used by ‘guix >>>> build’. Maybe keep it in emacs/ for now? >>> >>> If you mean "guix-main.scm", I don't think it's the right place either, >>> as all this guix-devel stuff does not depend on Guix REPL (or on any >>> code from "guix-main.scm" in general). Besides, "guix-main.scm" doesn't >>> provide a module. >>> >>> What about making some additional module?: (guix devel) or something. >>> Other similar code may be put there in future. For example, you are >>> editing a package definition and you may want to download the current >>> origin source. It will probably also require some specific scheme code, >>> which may be added to that module. >> >> Maybe ‘build-package’ could go to (guix packages)? > > ‘build-package’ uses ‘show-…’ procedures from (guix ui) module. I > thought that adding this module to (guix packages) was not desired, or > is it OK?
Right, sorry. So maybe leave in (guix build scripts) with a comment explaining that it doesn’t have a better place and is for use by the Emacs UI. (Make sure to use the monadic style as suggested in a previous message.) Could you send an updated patch? Sorry for the delay and round trips! Ludo’.