From: "\( via Guix-patches" via <guix-patches@gnu.org>
To: "Martin Schmidt" <martin.schmidt13@gmx.de>, <59569@debbugs.gnu.org>
Subject: [bug#59569] [PATCH 1/2] gnu: Add gst-plugins-good-qt.
Date: Fri, 25 Nov 2022 15:57:04 +0000 [thread overview]
Message-ID: <COLI0GWQ9A78.3VV5O457DL34W@guix-framework> (raw)
In-Reply-To: <20221125111313.3128-1-martin.schmidt13@gmx.de>
On Fri Nov 25, 2022 at 11:13 AM GMT, Martin Schmidt wrote:
> * gnu/packages/gstreamer.scm (gst-plugins-good-qt): New variable.
> --- a/gnu/packages/gstreamer.scm
> +++ b/gnu/packages/gstreamer.scm
> @@ -734,6 +734,27 @@ (define libsoup
> +(define-public gst-plugins-good-qt
> + (package (inherit gst-plugins-good)
> + (name "gst-plugins-good-qt")
> + (build-system meson-build-system)
> +
> + (inputs
> + (modify-inputs (package-inputs gst-plugins-good)
> + (prepend qtbase-5 qtdeclarative-5 qtx11extras qtwayland-5)))
> +
> + (arguments
> + (substitute-keyword-arguments (package-arguments gst-plugins-good)
> + ((#:configure-flags flags #~'())
> + #~(list "-Dgst-plugins-good:qt5=enabled" ))
> +
> +
> +))))
Indentation is... a wee bit off :) Also, the build-system override is a no-op.
Try this instead:
(define-public gst-plugins-good-qt
(package
(inherit gst-plugins-good)
(arguments
(substitute-keyword-arguments
(package-arguments gst-plugins-good)
((#:configure-flags flags)
#~(cons "-Dgst-plugins-good:qt5=enabled"
flags))))
(inputs
(modify-inputs (package-inputs gst-plugins-good)
(prepend qtbase-5
qtdeclarative-5
qtwayland-5
qtx11extras)))))
-- (
next prev parent reply other threads:[~2022-11-25 15:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-25 7:11 [bug#59569] [PATCH 0/2] nheko: Support video calls Martin Schmidt
2022-11-25 11:13 ` [bug#59569] [PATCH 1/2] gnu: Add gst-plugins-good-qt Martin Schmidt
2022-11-25 11:13 ` [bug#59569] [PATCH 2/2] gnu: nheko: Support video calls Martin Schmidt
2022-11-25 16:01 ` ( via Guix-patches via
2022-11-25 15:57 ` ( via Guix-patches via [this message]
2022-11-26 17:35 ` [bug#59569] [PATCH v2 1/2] gnu: Add gst-plugins-good-qt Martin Schmidt
2022-11-26 17:35 ` [bug#59569] [PATCH v2 2/2] gnu: nheko: Support video calls Martin Schmidt
2022-12-13 13:45 ` bug#59569: [PATCH 0/2] " Christopher Baines
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=COLI0GWQ9A78.3VV5O457DL34W@guix-framework \
--to=guix-patches@gnu.org \
--cc=59569@debbugs.gnu.org \
--cc=martin.schmidt13@gmx.de \
--cc=paren@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.