diff options
author | Fabio Natali via Guix-patches via <guix-patches@gnu.org> | 2024-07-30 11:58:03 +0100 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-08-01 23:47:07 +0800 |
commit | 4f5575d376875eb123a5564f71c26af1f8137358 (patch) | |
tree | ba39a31d33e2aafac1fd63992bbcafb793067ba0 | |
parent | ae8cb43b60fff101211d3eaa06c4c96e36afa9dc (diff) |
gnu: readymedia: Add coreutils to dependencies.
* gnu/packages/upnp.scm (readymedia)[inputs]: Add coreutils.
Change-Id: I8f73802bd0d8fecbf5ee20853eccefc2eef82411
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
-rw-r--r-- | gnu/packages/upnp.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm index aab68a64144..d85e1da956f 100644 --- a/gnu/packages/upnp.scm +++ b/gnu/packages/upnp.scm @@ -26,6 +26,7 @@ (define-module (gnu packages upnp) #:use-module (gnu packages) #:use-module (gnu packages autotools) + #:use-module (gnu packages base) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages curl) @@ -154,12 +155,17 @@ and others.") #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-source - (lambda _ + (lambda* (#:key inputs #:allow-other-keys) (substitute* "Makefile.am" - ((".*LIBAVUTIL_LIBS.*") ""))))))) + ((".*LIBAVUTIL_LIBS.*") "")) + (substitute* "minidlna.c" + (("rm -rf") + (string-append + (search-input-file inputs "/bin/rm") " -rf")))))))) (native-inputs (list autoconf automake gettext-minimal)) (inputs - (list ffmpeg + (list coreutils-minimal + ffmpeg flac libexif libid3tag |