From 46fce96881e90413511aa4de966f3edefbb5e310 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 5 Jun 2018 03:13:23 +0200 Subject: [PATCH] gnu: beets: Return #t from phases. * gnu/packages/music.scm (beets)[arguments]: Substitute INVOKE for SYSTEM* and return #t from all phases. --- gnu/packages/music.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7ae0d9a36f..99778024ba 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2577,9 +2577,12 @@ Songs can be searched by artist, name or even by a part of the song text.") `(#:phases (modify-phases %standard-phases (add-after 'unpack 'set-HOME - (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp")))) + (lambda _ + (setenv "HOME" (string-append (getcwd) "/tmp")) + #t)) (replace 'check - (lambda _ (zero? (system* "nosetests" "-v"))))))) + (lambda _ + (invoke "nosetests" "-v")))))) (native-inputs `(("python-beautifulsoup4" ,python-beautifulsoup4) ("python-flask" ,python-flask)