From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55627) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqmrr-0001jr-MU for guix-patches@gnu.org; Sun, 12 Jan 2020 18:42:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqmrq-0000vV-HD for guix-patches@gnu.org; Sun, 12 Jan 2020 18:42:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52464) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iqmrq-0000uI-Cx for guix-patches@gnu.org; Sun, 12 Jan 2020 18:42:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iqmrq-0003tp-83 for guix-patches@gnu.org; Sun, 12 Jan 2020 18:42:02 -0500 Subject: [bug#39108] [PATCH] gnu: Add gst-editing-services. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:53490) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqmqs-00014W-72 for guix-patches@gnu.org; Sun, 12 Jan 2020 18:41:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqmqp-0005pk-BY for guix-patches@gnu.org; Sun, 12 Jan 2020 18:41:01 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:9898) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iqmqo-0005Jr-QC for guix-patches@gnu.org; Sun, 12 Jan 2020 18:40:59 -0500 Received: from localhost.localdomain (193-80-82-122.hdsl.highway.telekom.at [193.80.82.122]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 47wtWj6nHtz1LLyX for ; Mon, 13 Jan 2020 00:40:49 +0100 (CET) From: Leo Prikler Date: Mon, 13 Jan 2020 00:40:27 +0100 Message-Id: <20200112234026.12266-1-leo.prikler@student.tugraz.at> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39108@debbugs.gnu.org * gnu/packages/gstreamer (gst-editing-services): New variable. --- gnu/packages/gstreamer.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 323e3ccfee..14dbf5a7ed 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -419,6 +419,37 @@ distribution problems in some jurisdictions, e.g. du= e to patent threats.") compression formats through the use of the libav library.") (license license:gpl2+))) =20 +(define-public gst-editing-services + (package + (name "gst-editing-services") + (version "1.16.2") + (source (origin + (method url-fetch) + (uri (string-append + "https://gstreamer.freedesktop.org/src/" name "/" + "gstreamer-editing-services-" version ".tar.xz")) + (sha256 + (base32 + "05hcf3prna8ajjnqd53221gj9syarrrjbgvjcbhicv0c38csc1hf"))= )) + (build-system gnu-build-system) + (arguments + ;; TODO: 16/22 failing tests with meson, 21 with gnu + `(#:tests? #f)) + (inputs + `(("gst-plugins-base" ,gst-plugins-base) + ("libxml2" ,libxml2))) + (native-inputs + `(("flex" ,flex) + ("perl" ,perl) + ("pkg-config" ,pkg-config) + ("python" ,python))) + (home-page "https://gstreamer.freedesktop.org/") + (synopsis "GStreamer library for non-linear editors") + (description + "This is a high-level library for facilitating the creation of audi= o/video +non-linear editors.") + (license license:gpl2+))) + (define-public python-gst (package (name "python-gst") --=20 2.24.1