Cayetano Santos via Guix-patches via writes: > * gnu/packages/emacs-xyz.scm (emacs-org-board): Update to 1138-2.500fe02. > --- > gnu/packages/emacs-xyz.scm | 12 +++++------- > 1 file changed, 5 insertions(+), 7 deletions(-) > > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm > index c7e6852194..3e6d09c509 100644 > --- a/gnu/packages/emacs-xyz.scm > +++ b/gnu/packages/emacs-xyz.scm > @@ -27782,8 +27782,8 @@ (define-public emacs-cpreproc-openvdb > (license license:gpl3+))) > > (define-public emacs-org-board > - (let ((commit "1393bd46d11a81328ed4fb8471831415a3efe224") > - (revision "1")) > + (let ((commit "500fe02bc114e5b535a2eb2ab73954d79428168f") > + (revision "2")) > (package > (name "emacs-org-board") > (version (git-version "1138" revision commit)) > @@ -27795,7 +27795,7 @@ (define-public emacs-org-board > (file-name (git-file-name name version)) > (sha256 > (base32 > - "1kryrg988c3sbxyp1sdgc6xdv2iz6kiflpzn2rw4z3l4grzab53b")))) > + "1mcghw9mmlyqsgxk97hd57495sfx8dp6ig7qgs5xn2b2k0ygv4vf")))) > (build-system emacs-build-system) > (arguments > (list > @@ -27805,11 +27805,9 @@ (define-public emacs-org-board > (lambda* (#:key inputs #:allow-other-keys) > (emacs-substitute-variables "org-board.el" > ("org-board-wget-program" > - (search-input-file inputs "/bin/wget")))))))) > - (inputs > - (list wget)) > + (search-input-file inputs "/bin/wget2")))))))) > (propagated-inputs > - (list emacs-org emacs-ztree)) > + (list emacs-ztree wget2)) Thanks for the patch, these changes around wget/wget2 look confusing to me though. The reason for the emacs-substitute-variables bit is to allow wget to just be an input rather than a propagated input, but you're making wget2 a propagated input here. This change and the motivation behind it is also missing from the commit message. Thanks, Chris