nckx pushed a commit to branch master in repository guix. commit 443c432e90691f0a81bca6feb70322dc92706627 Author: Tobias Geerinckx-Rice <m...@tobias.gr> Date: Mon Apr 30 16:03:39 2018 +0200
gnu: reposurgeon: End all phases in truth. * gnu/packages/version-control.scm (reposurgeon)[arguments]: Return #t from the ‘install-emacs-data’ phase, instead of COPY-FILE's undefined result. --- gnu/packages/version-control.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index b82abaf..848660b 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1468,7 +1468,8 @@ any project with more than one developer, is one of Aegis's major functions.") (lambda* (#:key outputs #:allow-other-keys) (install-file "reposurgeon-mode.el" (string-append (assoc-ref outputs "out") - "/share/emacs/site-lisp"))))))) + "/share/emacs/site-lisp")) + #t))))) (inputs `(("python" ,python-wrapper) ("tzdata" ,tzdata)))