me
/
guix
Archived
1
0
Fork 0

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>
master
Fabio Natali via Guix-patches via 2024-07-30 11:58:03 +01:00 committed by Zheng Junjie
parent ae8cb43b60
commit 4f5575d376
No known key found for this signature in database
GPG Key ID: 3B5AA993E1A2DFF0
1 changed files with 9 additions and 3 deletions

View File

@ -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