mhw pushed a commit to branch media-updates in repository guix. commit 6e3a647aeea4dd9d34c6c9ef642296cedae27939 Author: Efraim Flashner <efr...@flashner.co.il> Date: Tue Jan 19 12:52:35 2016 +0200
gnu: gst-plugins-base: Use 'modify-phases'. * gnu/packages/gstreamer.scm (gst-plugins-base)[arguments]: Use 'modify-phases'. --- gnu/packages/gstreamer.scm | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index d23f841..01e1ca2 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -180,12 +180,11 @@ This package provides the core library and elements.") (assoc-ref %outputs "doc") "/share/gtk-doc/html")) #:phases - (alist-cons-before - 'configure 'patch - (lambda _ - (substitute* "tests/check/libs/pbutils.c" - (("/bin/sh") (which "sh")))) - %standard-phases))) + (modify-phases %standard-phases + (add-before 'configure 'patch + (lambda _ + (substitute* "tests/check/libs/pbutils.c" + (("/bin/sh") (which "sh")))))))) (home-page "http://gstreamer.freedesktop.org/") (synopsis "Plugins for the GStreamer multimedia library")