2013-09-22 10:22:00 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-10-01 16:37:38 -04:00
|
|
|
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
2015-02-05 23:05:41 -05:00
|
|
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
2016-03-05 23:51:55 -05:00
|
|
|
;;; Copyright © 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
|
2018-03-20 14:03:54 -04:00
|
|
|
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
2017-07-31 04:38:43 -04:00
|
|
|
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
2018-08-17 13:43:04 -04:00
|
|
|
;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
|
2017-12-03 05:37:15 -05:00
|
|
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
2020-10-02 17:07:06 -04:00
|
|
|
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2020-01-12 13:13:03 -05:00
|
|
|
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
2021-09-25 03:27:02 -04:00
|
|
|
;;; Copyright © 2020 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
2020-11-16 04:46:28 -05:00
|
|
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
2013-09-22 10:22:00 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gstreamer)
|
2016-08-15 10:20:09 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2020-06-11 06:31:26 -04:00
|
|
|
#:use-module (guix git-download)
|
2020-06-29 01:58:27 -04:00
|
|
|
#:use-module (guix build-system cmake)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
2019-10-09 06:57:19 -04:00
|
|
|
#:use-module (guix build-system meson)
|
2020-10-11 10:46:19 -04:00
|
|
|
#:use-module (guix build-system trivial)
|
2016-03-06 01:49:35 -05:00
|
|
|
#:use-module (guix utils)
|
2013-10-30 17:06:57 -04:00
|
|
|
#:use-module (gnu packages)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages aidc)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
#:use-module (gnu packages audio)
|
2020-06-11 06:31:26 -04:00
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages base)
|
2021-04-12 05:36:06 -04:00
|
|
|
#:use-module (gnu packages bash)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (gnu packages bison)
|
2015-02-05 04:18:20 -05:00
|
|
|
#:use-module (gnu packages cdrom)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages curl)
|
2014-11-18 15:29:04 -05:00
|
|
|
#:use-module (gnu packages compression)
|
2020-06-29 03:05:39 -04:00
|
|
|
#:use-module (gnu packages documentation)
|
|
|
|
#:use-module (gnu packages elf)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (gnu packages flex)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages freedesktop)
|
2020-06-11 06:31:26 -04:00
|
|
|
#:use-module (gnu packages gettext)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages ghostscript)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages gl)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (gnu packages glib)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
#:use-module (gnu packages gnome)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages gnupg)
|
|
|
|
#:use-module (gnu packages graphics)
|
2020-07-06 00:13:23 -04:00
|
|
|
#:use-module (gnu packages graphviz)
|
2014-11-18 15:29:04 -05:00
|
|
|
#:use-module (gnu packages gtk)
|
gnu: gst-plugins-good: Enable more plugins
* gnu/packages/gstreamer.scm (gst-plugins-good): New inputs:
cairo, gdk-pixbuf, flac, speex, libogg, libx11, zlib, libpng, libjpeg,
libXext, libxv, pulseaudio.
2014-11-19 09:15:30 -05:00
|
|
|
#:use-module (gnu packages image)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages image-processing)
|
2020-07-06 00:13:23 -04:00
|
|
|
#:use-module (gnu packages iso-codes)
|
|
|
|
#:use-module (gnu packages java)
|
|
|
|
#:use-module (gnu packages libunwind)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages libusb)
|
2014-11-18 15:29:04 -05:00
|
|
|
#:use-module (gnu packages linux)
|
2021-04-12 05:36:06 -04:00
|
|
|
#:use-module (gnu packages maths)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
#:use-module (gnu packages mp3)
|
2021-04-12 05:36:06 -04:00
|
|
|
#:use-module (gnu packages multiprecision)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages music)
|
2017-12-03 05:37:15 -05:00
|
|
|
#:use-module (gnu packages ncurses)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages nettle)
|
2020-06-11 06:31:26 -04:00
|
|
|
#:use-module (gnu packages networking)
|
2020-06-29 01:58:27 -04:00
|
|
|
#:use-module (gnu packages ocr)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (gnu packages perl)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages photo)
|
gnu: gst-plugins-good: Enable more plugins
* gnu/packages/gstreamer.scm (gst-plugins-good): New inputs:
cairo, gdk-pixbuf, flac, speex, libogg, libx11, zlib, libpng, libjpeg,
libXext, libxv, pulseaudio.
2014-11-19 09:15:30 -05:00
|
|
|
#:use-module (gnu packages pulseaudio)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages qt)
|
|
|
|
#:use-module (gnu packages rdf)
|
2020-06-24 23:38:53 -04:00
|
|
|
#:use-module (gnu packages sdl)
|
2020-06-11 06:31:26 -04:00
|
|
|
#:use-module (gnu packages shells)
|
2015-04-13 12:09:10 -04:00
|
|
|
#:use-module (gnu packages video)
|
2014-11-18 15:29:04 -05:00
|
|
|
#:use-module (gnu packages xorg)
|
2020-07-06 00:51:06 -04:00
|
|
|
#:use-module (gnu packages xdisorg)
|
2014-11-18 15:29:04 -05:00
|
|
|
#:use-module (gnu packages xiph)
|
2013-09-22 10:22:00 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2020-07-06 00:51:06 -04:00
|
|
|
#:use-module (gnu packages ruby)
|
|
|
|
#:use-module (gnu packages speech)
|
2013-10-30 17:06:57 -04:00
|
|
|
#:use-module (gnu packages python)
|
2016-01-21 06:07:31 -05:00
|
|
|
#:use-module (gnu packages ssh)
|
|
|
|
#:use-module (gnu packages telephony)
|
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module (gnu packages version-control)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
#:use-module (gnu packages vulkan)
|
|
|
|
#:use-module (gnu packages webkit)
|
2016-06-21 06:27:50 -04:00
|
|
|
#:use-module (gnu packages assembly)
|
2013-10-30 17:06:57 -04:00
|
|
|
#:use-module (gnu packages xml))
|
2013-09-22 10:22:00 -04:00
|
|
|
|
2020-07-06 00:13:23 -04:00
|
|
|
(define-public openni2
|
|
|
|
(package
|
|
|
|
(name "openni2")
|
|
|
|
(version "2.2.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
(url "https://github.com/occipital/OpenNI2")
|
2020-07-06 00:13:23 -04:00
|
|
|
(commit (string-append "v" version "-debian"))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0mfnyzpq53wnzgjfx91xcbx0nrl0lp1vrk1rk20a3gb3kshsr675"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; No target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(native-inputs
|
|
|
|
`(("graphviz" ,graphviz)
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
("openjdk" ,openjdk14)
|
|
|
|
("openjdk:jdk" ,openjdk14 "jdk")
|
|
|
|
("python" ,python-wrapper)))
|
|
|
|
(inputs
|
|
|
|
`(("freeglut3" ,freeglut)
|
|
|
|
("libudev" ,eudev)
|
|
|
|
("libusb" ,libusb)))
|
|
|
|
(synopsis "Framework for sensor-based 'Natural Interaction")
|
|
|
|
(description "OpenNI is a framework for getting data to support
|
|
|
|
'Natural Interaction', i.e. skeleton tracking, gesture tracking, and similar
|
|
|
|
ways of getting data from humans. It provides the interface for physical devices
|
|
|
|
and for middleware components.")
|
|
|
|
(home-page "https://structure.io/openni")
|
|
|
|
(license license:asl2.0)))
|
|
|
|
|
2020-06-29 03:05:39 -04:00
|
|
|
(define-public libdc1394
|
|
|
|
(package
|
|
|
|
(name "libdc1394")
|
|
|
|
(version "2.2.6")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://sourceforge.net/projects/" name "/files/"
|
|
|
|
name "-2" "/" version "/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "1v8gq54n1pg8izn7s15yylwjf8r1l1dmzbm2yvf6pv2fmb4mz41b"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list doxygen perl pkg-config))
|
2020-06-29 03:05:39 -04:00
|
|
|
(inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
(list glu
|
|
|
|
libraw1394
|
|
|
|
libusb
|
|
|
|
libxv
|
|
|
|
mesa
|
|
|
|
sdl
|
|
|
|
v4l-utils))
|
2020-06-29 03:05:39 -04:00
|
|
|
(synopsis "1394-Based Digital Camera Control Library")
|
|
|
|
(description "LibDC1394 is a library that provides functionality to control
|
|
|
|
any camera that conforms to the 1394-Based Digital Camera Specification written
|
|
|
|
by the 1394 Trade Association. It utilizes the lowlevel functionality provided
|
|
|
|
by libraw1394 to communicate with the camera. It also uses the video1394 kernel
|
|
|
|
module for the DMA capture of the video flow.")
|
|
|
|
(home-page "https://damien.douxchamps.net/ieee1394/libdc1394/")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2020-06-29 01:58:27 -04:00
|
|
|
(define-public ccextractor
|
|
|
|
(package
|
|
|
|
(name "ccextractor")
|
|
|
|
(version "0.88")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
(url "https://github.com/CCExtractor/ccextractor")
|
2020-06-29 01:58:27 -04:00
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "1sya45hvv4d46bk7541yimmafgvgyhkpsvwfz9kv6pm4yi1lz6nb"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; No target
|
|
|
|
#:configure-flags
|
|
|
|
(list
|
|
|
|
"-DWITH_FFMPEG=ON"
|
|
|
|
"-DWITH_OCR=ON"
|
|
|
|
"-DWITH_SHARING=ON"
|
|
|
|
"-DWITH_HARDSUBX=ON")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; The package is in a sub-dir of this repo.
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
(lambda _
|
|
|
|
(chdir "src")
|
|
|
|
#t))
|
|
|
|
(add-after 'chdir 'fix-build-errors
|
|
|
|
(lambda _
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
(("libnanomsg")
|
|
|
|
"nanomsg"))
|
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("python" ,python-wrapper)))
|
|
|
|
(inputs
|
|
|
|
`(("ffmeg" ,ffmpeg-3.4)
|
|
|
|
("nanomsg" ,nanomsg)
|
2020-08-20 06:52:16 -04:00
|
|
|
("leptonica" ,leptonica)
|
2020-06-29 01:58:27 -04:00
|
|
|
("ocr" ,tesseract-ocr)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(synopsis "Closed Caption Extractor")
|
|
|
|
(description "CCExtractor is a tool that analyzes video files and produces
|
|
|
|
independent subtitle files from the closed captions data. It is portable, small,
|
|
|
|
and very fast.")
|
|
|
|
(home-page "https://www.ccextractor.org/")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2020-06-24 23:38:53 -04:00
|
|
|
(define-public libvisual
|
|
|
|
(package
|
|
|
|
(name "libvisual")
|
|
|
|
(version "0.4.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
(url "https://github.com/Libvisual/libvisual")
|
2020-06-24 23:38:53 -04:00
|
|
|
(commit (string-append name "-" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "02xwakwkqjsznc03pjlb6hcv1li1gw3r8xvyswqsm4msix5xq18a"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; The package is in a sub-dir of this repo.
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
(lambda _
|
|
|
|
(chdir "libvisual")
|
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
("libintl" ,intltool)
|
|
|
|
("libtool" ,libtool)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list sdl))
|
2020-06-24 23:38:53 -04:00
|
|
|
(native-search-paths
|
|
|
|
(list
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBVISUAL_PLUGINS_BASE_DIR")
|
|
|
|
(files '("lib/libvisual-0.4")))))
|
|
|
|
;; To load libvisual-plugins.
|
|
|
|
(search-paths native-search-paths)
|
|
|
|
(synopsis "Audio visualisation library")
|
|
|
|
(description "Libvisual is a library that acts as a middle layer between
|
|
|
|
applications that want audio visualisation and audio visualisation plugins.")
|
|
|
|
(home-page "http://libvisual.org/")
|
|
|
|
(license
|
|
|
|
(list
|
|
|
|
;; Libraries.
|
|
|
|
license:lgpl2.1+
|
|
|
|
;; Examples and Tests.
|
|
|
|
license:gpl2+))))
|
|
|
|
|
2020-06-24 23:44:23 -04:00
|
|
|
(define-public libvisual-plugins
|
|
|
|
(package
|
|
|
|
(name "libvisual-plugins")
|
|
|
|
(version "0.4.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
(url "https://github.com/Libvisual/libvisual")
|
2020-06-24 23:44:23 -04:00
|
|
|
(commit (string-append name "-" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "02xwakwkqjsznc03pjlb6hcv1li1gw3r8xvyswqsm4msix5xq18a"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list
|
|
|
|
"--disable-gstreamer-plugin"
|
|
|
|
"--disable-corona"
|
|
|
|
"--disable-gforce"
|
|
|
|
(string-append "--with-plugins-base-dir=" (assoc-ref %outputs "out")
|
|
|
|
"/lib/libvisual-0.4"))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; The package is in a sub-dir of this repo.
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
(lambda _
|
|
|
|
(chdir "libvisual-plugins")
|
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("libintl" ,intltool)
|
|
|
|
("libtool" ,libtool)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("alsa-lib" ,alsa-lib)
|
|
|
|
("esound" ,esound)
|
2021-10-02 21:39:26 -04:00
|
|
|
("librsvg" ,librsvg)
|
2020-06-24 23:44:23 -04:00
|
|
|
("gtk+" ,gtk+-2)
|
|
|
|
("jack" ,jack-2)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)))
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list libvisual))
|
2020-06-24 23:44:23 -04:00
|
|
|
(synopsis "Audio visualisation library")
|
|
|
|
(description "Libvisual is a library that acts as a middle layer between
|
|
|
|
applications that want audio visualisation and audio visualisation plugins.")
|
|
|
|
(home-page "http://libvisual.org/")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2020-06-11 06:31:26 -04:00
|
|
|
(define-public esound
|
|
|
|
(package
|
|
|
|
(name "esound")
|
|
|
|
(version "0.2.41")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri
|
|
|
|
(git-reference
|
|
|
|
(url "https://gitlab.gnome.org/Archive/esound.git")
|
|
|
|
(commit "ESOUND_0_2_41")))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "141jg70fim276i8k2kyypm84gy89i1k9mm4yf68mfwnybvjw1d6n"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
(list autoconf
|
|
|
|
automake
|
|
|
|
gettext-minimal
|
|
|
|
gnome-common
|
|
|
|
libtool
|
|
|
|
pkg-config
|
|
|
|
tcsh ; for the tests
|
|
|
|
which))
|
2020-06-11 06:31:26 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list alsa-lib pcaudiolib tcp-wrappers))
|
2020-06-11 06:31:26 -04:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list audiofile))
|
2020-06-11 06:31:26 -04:00
|
|
|
(synopsis "Enlightened Sound Daemon")
|
|
|
|
(description "The Enlightened Sound Daemon mixes several audio streams for
|
|
|
|
playback by a single audio device. You can also pre-load samples, and play them
|
|
|
|
back without having to send all the data for the sound. Network transparency is
|
|
|
|
also built in, so you can play sounds on one machine, and listen to them on
|
|
|
|
another.")
|
|
|
|
(home-page "https://web.archive.org/web/20160528230227/
|
|
|
|
http://www.tux.org/~ricdude/overview.html")
|
|
|
|
(license
|
|
|
|
(list
|
|
|
|
;; Libraries.
|
|
|
|
license:lgpl2.0+
|
|
|
|
;; Others.
|
|
|
|
license:gpl2+))))
|
|
|
|
|
2015-02-05 03:09:53 -05:00
|
|
|
(define-public orc
|
|
|
|
(package
|
|
|
|
(name "orc")
|
2020-10-02 17:07:06 -04:00
|
|
|
(version "0.4.32")
|
2015-02-05 03:09:53 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-02-19 08:23:38 -05:00
|
|
|
(uri (string-append "https://gstreamer.freedesktop.org/data/src/"
|
2015-02-05 03:09:53 -05:00
|
|
|
"orc/orc-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-10-02 17:07:06 -04:00
|
|
|
"1w0qmyj3v9sb2g7ff39pp38b9850y9hyy0bag26ifrby5f7ksvm6"))))
|
2019-10-09 06:57:19 -04:00
|
|
|
(build-system meson-build-system)
|
2016-09-06 01:47:22 -04:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
2019-10-09 06:57:19 -04:00
|
|
|
(add-after 'unpack 'disable-faulty-test
|
2016-09-06 01:47:22 -04:00
|
|
|
(lambda _
|
|
|
|
;; XXX Disable the 'test-limits' and 'exec_opcodes_sys'
|
|
|
|
;; tests, which fail on some machines. See:
|
|
|
|
;; https://bugzilla.gnome.org/show_bug.cgi?id=735273
|
|
|
|
(substitute* '("testsuite/test-limits.c"
|
|
|
|
"testsuite/exec_opcodes_sys.c")
|
|
|
|
(("if \\(error\\) return 1;")
|
2018-03-20 14:03:54 -04:00
|
|
|
"if (error) return 77;"))
|
|
|
|
#t)))))
|
2019-10-09 06:57:19 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gtk-doc/stable))
|
gnu: Use HTTPS for supported freedesktop.org home pages.
* gnu/packages/fontutils.scm (fontconfig)[home-page]: Use HTTPS.
* gnu/packages/freedesktop.scm (python-pyxdg, accountsservice)
(modem-manager, telepathy-mission-control, telepathy-mission-control)
(colord-gtk, desktop-file-utils)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (libspectre)[home-page]: Likewise.
* gnu/packages/glib.scm (dbus, dbus-glib, telepathy-glib)[home-page]:
Likewise.
* gnu/packages/gnome.scm (shared-mime-info, hicolor-icon-theme)
(libxklavier, colord, upower)[home-page]: Likewise.
* gnu/packages/gstreamer.scm (orc, python-gst)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (sound-theme-freedesktop)[home-page]:
Likewise.
* gnu/packages/libreoffice.scm (libexttextcat)[home-page]: Likewise.
* gnu/packages/polkit.scm (polkit-gnome, polkit-gnome)[home-page]:
Likewise.
* gnu/packages/pulseaudio.scm (pavucontrol)[home-page]: Likewise.
* gnu/packages/python.scm (python-dbus)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (startup-notification)[home-page]: Likewise.
2018-02-24 07:44:26 -05:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/modules/orc.html")
|
2015-02-05 03:09:53 -05:00
|
|
|
(synopsis "Oil runtime compiler")
|
|
|
|
(description
|
|
|
|
"Orc is a just-in-time compiler implemented as a library and set of
|
|
|
|
associated tools for compiling and executing simple programs that operate on
|
|
|
|
arrays of data.")
|
|
|
|
;; The source code implementing the Marsenne Twister algorithm is licensed
|
|
|
|
;; under the 3-clause BSD license, the rest is under 2-clause BSD license.
|
2016-08-15 10:20:09 -04:00
|
|
|
(license (list license:bsd-2 license:bsd-3))))
|
2015-02-05 03:09:53 -05:00
|
|
|
|
2020-10-11 10:46:19 -04:00
|
|
|
(define-public gstreamer-docs
|
|
|
|
(package
|
|
|
|
(name "gstreamer-docs")
|
2021-10-08 15:18:48 -04:00
|
|
|
(version "1.18.5")
|
2020-10-11 10:46:19 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/gstreamer-docs"
|
|
|
|
"/gstreamer-docs-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 15:18:48 -04:00
|
|
|
"1xvqrqv1zxqdpvd02dvr0xspk30c8b940vvnr9x75a08nx0x75xh"))))
|
2020-10-11 10:46:19 -04:00
|
|
|
(build-system trivial-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:modules ((guix build utils))
|
|
|
|
#:builder
|
|
|
|
(begin
|
|
|
|
(use-modules ((guix build utils)))
|
|
|
|
(let* ((source (assoc-ref %build-inputs "source"))
|
|
|
|
(tar (assoc-ref %build-inputs "tar"))
|
|
|
|
(xz (assoc-ref %build-inputs "xz"))
|
|
|
|
(out (assoc-ref %outputs "out"))
|
|
|
|
(books (string-append out "/share/devhelp/books")))
|
|
|
|
(setenv "PATH" (string-append xz "/bin"))
|
|
|
|
(mkdir-p books)
|
|
|
|
(with-directory-excursion books
|
|
|
|
(invoke (string-append tar "/bin/tar") "-xvf" source
|
|
|
|
"--strip-components=3"
|
|
|
|
(string-append ,name "-" ,version
|
2021-10-08 15:18:48 -04:00
|
|
|
"/devhelp/books/GStreamer")))))))
|
2020-10-11 10:46:19 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list tar xz))
|
2020-10-11 10:46:19 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
|
|
|
(synopsis "Developer documentation for GStreamer")
|
|
|
|
(description
|
|
|
|
"This package contains manuals, tutorials, and API reference for
|
|
|
|
the GStreamer multimedia framework.")
|
|
|
|
;; The documentation is covered by multiple licenses. Anything not
|
|
|
|
;; explicitly mentioned below is LGPL2.1+. See README.md for details.
|
|
|
|
(license (list
|
|
|
|
;; The tutorial code can be used with either of these licenses,
|
|
|
|
;; at the users option.
|
|
|
|
license:lgpl2.1+ license:bsd-2 license:expat
|
|
|
|
;; The developer manual and plugin writer guide carries
|
|
|
|
;; the Open Publication License v1.0.
|
|
|
|
(license:fsf-free "https://opencontent.org/openpub/"
|
|
|
|
"The Open Publication License v1.0")
|
|
|
|
;; Tutorials are covered by CC-BY-SA 4.0.
|
|
|
|
license:cc-by-sa4.0))))
|
|
|
|
|
2020-05-21 16:10:02 -04:00
|
|
|
;; Increase the test timeouts to accommodate slow or busy machines.
|
|
|
|
(define %common-gstreamer-phases
|
|
|
|
'((add-after 'unpack 'increase-test-timeout
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/check/meson.build"
|
2020-11-27 12:36:23 -05:00
|
|
|
(("'CK_DEFAULT_TIMEOUT', '[0-9]*'")
|
|
|
|
"'CK_DEFAULT_TIMEOUT', '600'")
|
|
|
|
(("timeout ?: .*\\)")
|
2021-10-08 14:42:08 -04:00
|
|
|
"timeout: 90 * 60)"))))))
|
2020-05-21 16:10:02 -04:00
|
|
|
|
2013-09-22 10:22:00 -04:00
|
|
|
(define-public gstreamer
|
|
|
|
(package
|
|
|
|
(name "gstreamer")
|
2021-10-08 14:42:08 -04:00
|
|
|
(version "1.18.5")
|
2013-09-22 10:22:00 -04:00
|
|
|
(source
|
|
|
|
(origin
|
2021-04-12 05:36:06 -04:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 14:42:08 -04:00
|
|
|
"02p8my6dzmm4rvd93s3qnh8w5bm9bh4f7gdydbsvnn9llqr251jm"))))
|
2020-01-20 15:38:40 -05:00
|
|
|
(build-system meson-build-system)
|
2015-04-03 23:33:14 -04:00
|
|
|
(arguments
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:phases
|
2020-01-20 15:38:40 -05:00
|
|
|
(modify-phases %standard-phases
|
2021-10-08 14:31:54 -04:00
|
|
|
,@%common-gstreamer-phases
|
|
|
|
;; FIXME: Since switching to the meson-build-system, two tests
|
|
|
|
;; started failing on i686. See
|
|
|
|
;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/499>.
|
|
|
|
,@(if (string-prefix? "i686" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
|
|
|
`((add-after 'unpack 'disable-some-tests
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/check/gst/gstsystemclock.c"
|
|
|
|
(("tcase_add_test \\(tc_chain, test_stress_cleanup_unschedule.*")
|
|
|
|
"")
|
|
|
|
(("tcase_add_test \\(tc_chain, test_stress_reschedule.*")
|
2021-10-08 14:42:08 -04:00
|
|
|
"")))))
|
2021-10-27 16:52:33 -04:00
|
|
|
'())
|
|
|
|
(add-after 'unpack 'disable-problematic-tests
|
|
|
|
(lambda _
|
|
|
|
;; Disable the 'pipelines-seek' test, which appears to be load
|
|
|
|
;; sensitive (see:
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/854).
|
|
|
|
(substitute* "tests/check/meson.build"
|
|
|
|
((".*'pipelines/seek.c'.*")
|
|
|
|
"")))))))
|
2021-04-12 05:36:06 -04:00
|
|
|
(propagated-inputs
|
|
|
|
;; In gstreamer-1.0.pc:
|
|
|
|
;; Requires: glib-2.0, gobject-2.0
|
|
|
|
;; Requires.private: gmodule-no-export-2.0 libunwind libdw
|
2021-12-13 11:18:24 -05:00
|
|
|
(list elfutils ; libdw
|
|
|
|
glib libunwind))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 06:01:56 -05:00
|
|
|
(native-inputs
|
2021-04-12 05:36:06 -04:00
|
|
|
`(("bash-completion" ,bash-completion)
|
|
|
|
("bison" ,bison)
|
2013-09-22 10:22:00 -04:00
|
|
|
("flex" ,flex)
|
2021-04-12 05:36:06 -04:00
|
|
|
("gettext" ,gettext-minimal)
|
gnu: glib: Add "bin" output.
Fixes <http://bugs.gnu.org/17853>.
* gnu/packages/glib.scm (glib)[outputs]: Add "bin".
(gobject-introspection)[native-inputs]: New field.
* gnu/packages/avahi.scm (avahi)[native-inputs]: Add glib:bin.
* gnu/packages/gnome.scm (brasero, libgnome-keyring, evince,
gsettings-desktop-schemas, libnotify, gtkglext): Likewise.
* gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base,
gst-plugins-base-0.10): Likewise.
* gnu/packages/gtk.scm (atk, pango, gdk-pixbuf, gtk+-2, gtk+):
Likewise.
* gnu/packages/linux.scm (udev): Likewise.
* gnu/packages/pdf.scm (poppler): Likewise.
2014-06-30 12:05:57 -04:00
|
|
|
("glib" ,glib "bin")
|
2015-04-03 23:14:31 -04:00
|
|
|
("gobject-introspection" ,gobject-introspection)
|
2013-09-22 10:22:00 -04:00
|
|
|
("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
2013-09-22 10:41:29 -04:00
|
|
|
("python-wrapper" ,python-wrapper)))
|
2021-04-12 05:36:06 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gmp libcap
|
|
|
|
;; For tests.
|
|
|
|
gsl))
|
2015-06-24 11:02:32 -04:00
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "GST_PLUGIN_SYSTEM_PATH")
|
|
|
|
(files '("lib/gstreamer-1.0")))))
|
2016-02-19 08:23:38 -05:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2021-04-12 05:36:06 -04:00
|
|
|
(synopsis "Multimedia framework")
|
2013-09-22 10:22:00 -04:00
|
|
|
(description
|
|
|
|
"GStreamer is a library for constructing graphs of media-handling
|
|
|
|
components. The applications it supports range from simple Ogg/Vorbis
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 08:16:07 -04:00
|
|
|
playback, audio/video streaming to complex audio mixing and video
|
|
|
|
non-linear editing.
|
2013-09-22 10:22:00 -04:00
|
|
|
|
|
|
|
Applications can take advantage of advances in codec and filter technology
|
|
|
|
transparently. Developers can add new codecs and filters by writing a
|
|
|
|
simple plugin with a clean, generic interface.
|
|
|
|
|
|
|
|
This package provides the core library and elements.")
|
2016-08-15 10:20:09 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2013-09-22 11:25:12 -04:00
|
|
|
|
|
|
|
(define-public gst-plugins-base
|
|
|
|
(package
|
|
|
|
(name "gst-plugins-base")
|
2021-10-08 14:46:42 -04:00
|
|
|
(version "1.18.5")
|
2013-09-22 11:25:12 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2016-01-21 00:50:02 -05:00
|
|
|
(uri (string-append "https://gstreamer.freedesktop.org/src/" name "/"
|
gnu: Adjust formatting as recommended by 'guix lint'.
* gnu/packages/aidc.scm (barcode, qrencode),
gnu/packages/bash.scm (bash, bash-completion),
gnu/packages/busybox.scm (busybox),
gnu/packages/cdrom.scm (cdparanoia),
gnu/packages/cmake.scm (cmake),
gnu/packages/conkeror.scm (conkeror),
gnu/packages/cook.scm (cook),
gnu/packages/curl.scm (curl),
gnu/packages/docbook.scm (docbook-xsl),
gnu/packages/enlightenment.scm (enlightenment),
gnu/packages/games.scm (abbaye),
gnu/packages/geeqie.scm (exiv2),
gnu/packages/gimp.scm (gegl),
gnu/packages/gl.scm (glu, freeglut, ftgl),
gnu/packages/glib.scm (glib),
gnu/packages/gnome.scm (orbit2, gconf, geocode-glib),
gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base),
gnu/packages/linux.scm (util-linux),
gnu/packages/lisp.scm (gcl, ecl),
gnu/packages/maths.scm (gnuplot, hdf5),
gnu/packages/ssh.scm (dropbear),
gnu/packages/web.scm (json-c): Remove tabulations and trailing
white spaces or reformat to fit within 80 columns.
* gnu/packages/audio.scm (aubio),
gnu/packages/emacs.scm (emacs-s),
gnu/packages/engineering.scm (geda-gaf),
gnu/packages/games.scm (dosbox),
gnu/packages/gnome.scm (gusb),
gnu/packages/gtk.scm (gtk+),
gnu/packages/guile.scm (guile-wisp),
gnu/packages/hurd.scm (hurd-headers),
gnu/packages/wm.scm (i3-wm): Adjust synopsis or description.
2015-11-13 09:50:36 -05:00
|
|
|
name "-" version ".tar.xz"))
|
2013-09-22 11:25:12 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 14:46:42 -04:00
|
|
|
"18vg8kk7p2p8za8zaqg0v7z6898yw5a3b12vvl7xn02pb3s7l2wn"))))
|
2020-01-20 15:40:02 -05:00
|
|
|
(build-system meson-build-system)
|
2015-04-04 00:05:10 -04:00
|
|
|
(propagated-inputs
|
2018-03-22 10:41:11 -04:00
|
|
|
`(("glib" ,glib) ;required by gstreamer-sdp-1.0.pc
|
|
|
|
("gstreamer" ,gstreamer) ;required by gstreamer-plugins-base-1.0.pc
|
2021-10-08 14:46:42 -04:00
|
|
|
;; wayland-client.h is referred to in
|
|
|
|
;; include/gstreamer-1.0/gst/gl/wayland/gstgldisplay_wayland.h
|
|
|
|
("wayland" ,wayland)
|
2020-01-12 13:13:03 -05:00
|
|
|
;; XXX: Do not enable Orc optimizations on ARM systems because
|
|
|
|
;; it leads to two test failures.
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/issues/683
|
|
|
|
,@(if (string-prefix? "arm" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
|
|
|
'()
|
|
|
|
`(("orc" ,orc))))) ;required by gstreamer-audio-1.0.pc
|
2013-09-22 11:25:12 -04:00
|
|
|
(inputs
|
2021-04-12 05:36:08 -04:00
|
|
|
;; TODO: Add libvorbisidec
|
2015-02-05 04:18:20 -05:00
|
|
|
`(("cdparanoia" ,cdparanoia)
|
2014-11-18 15:29:04 -05:00
|
|
|
("pango" ,pango)
|
|
|
|
("libogg" ,libogg)
|
|
|
|
("libtheora" ,libtheora)
|
|
|
|
("libvorbis" ,libvorbis)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("libXext" ,libxext)
|
|
|
|
("libxv" ,libxv)
|
2018-08-17 13:43:04 -04:00
|
|
|
("alsa-lib" ,alsa-lib)
|
2021-04-12 05:36:08 -04:00
|
|
|
("opus" ,opus)
|
|
|
|
("graphene" ,graphene)
|
|
|
|
("iso-codes" ,iso-codes)
|
|
|
|
("libgudev" ,libgudev)
|
|
|
|
("libjpeg" ,libjpeg-turbo)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libvisual" ,libvisual)
|
|
|
|
("mesa" ,mesa)
|
2021-10-08 14:46:42 -04:00
|
|
|
("wayland-protocols" ,wayland-protocols)))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 06:01:56 -05:00
|
|
|
(native-inputs
|
2021-04-12 05:36:08 -04:00
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
("python-wrapper" ,python-wrapper)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("xorg-server" ,xorg-server-for-tests)))
|
2013-09-22 11:25:12 -04:00
|
|
|
(arguments
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:phases
|
2016-01-19 05:52:35 -05:00
|
|
|
(modify-phases %standard-phases
|
2020-05-21 16:10:02 -04:00
|
|
|
,@%common-gstreamer-phases
|
2021-11-18 10:08:57 -05:00
|
|
|
(add-after 'unpack 'disable-problematic-tests
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/check/meson.build"
|
|
|
|
;; This test causes nondeterministic failures (see:
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/950).
|
|
|
|
((".*'elements/appsrc.c'.*")
|
|
|
|
""))))
|
2016-01-19 05:52:35 -05:00
|
|
|
(add-before 'configure 'patch
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/check/libs/pbutils.c"
|
2021-11-18 10:08:57 -05:00
|
|
|
(("/bin/sh") (which "sh")))))
|
2021-04-12 05:36:08 -04:00
|
|
|
(add-before 'check 'pre-check
|
|
|
|
(lambda _
|
|
|
|
;; Tests require a running X server.
|
|
|
|
(system "Xvfb :1 +extension GLX &")
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
;; Tests write to $HOME.
|
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
;; Tests look for $XDG_RUNTIME_DIR.
|
|
|
|
(setenv "XDG_RUNTIME_DIR" (getcwd))
|
|
|
|
;; For missing '/etc/machine-id'.
|
2021-11-18 10:08:57 -05:00
|
|
|
(setenv "DBUS_FATAL_WARNINGS" "0"))))))
|
2016-03-29 04:14:12 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2013-09-22 11:25:12 -04:00
|
|
|
(synopsis
|
2014-11-18 15:29:04 -05:00
|
|
|
"Plugins for the GStreamer multimedia library")
|
|
|
|
(description "This package provides an essential exemplary set of plug-ins
|
|
|
|
for the GStreamer multimedia library.")
|
2016-08-15 10:20:09 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2013-09-22 11:25:12 -04:00
|
|
|
|
2014-11-18 15:29:04 -05:00
|
|
|
(define-public gst-plugins-good
|
|
|
|
(package
|
|
|
|
(name "gst-plugins-good")
|
2021-10-08 14:55:27 -04:00
|
|
|
(version "1.18.5")
|
2014-11-18 15:29:04 -05:00
|
|
|
(source
|
|
|
|
(origin
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/" name "/"
|
|
|
|
name "-" version ".tar.xz"))
|
2021-10-08 14:55:27 -04:00
|
|
|
(patches (search-patches "gst-plugins-good-fix-test.patch"))
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(sha256
|
2021-10-08 14:55:27 -04:00
|
|
|
(base32 "0svrapawych2s3lm4lx3x023zxq5kcx50jnfmh0qigszfskyxbis"))))
|
2020-01-20 15:40:42 -05:00
|
|
|
(build-system meson-build-system)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(arguments
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2020-11-27 13:01:01 -05:00
|
|
|
,@%common-gstreamer-phases
|
2020-10-11 10:46:19 -04:00
|
|
|
(add-before 'check 'pre-check
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(lambda _
|
|
|
|
;; Tests require a running X server.
|
|
|
|
(system "Xvfb :1 +extension GLX &")
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
;; Tests write to $HOME.
|
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
;; Tests look for $XDG_RUNTIME_DIR.
|
|
|
|
(setenv "XDG_RUNTIME_DIR" (getcwd))
|
|
|
|
;; For missing '/etc/machine-id'.
|
2021-10-08 14:31:54 -04:00
|
|
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
|
|
|
#t)))))
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(native-inputs
|
2020-10-11 10:46:19 -04:00
|
|
|
`(("gettext" ,gettext-minimal)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
|
|
|
("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("python-wrapper" ,python-wrapper)
|
|
|
|
("xmllint" ,libxml2)
|
|
|
|
("xorg-server" ,xorg-server-for-tests)))
|
2014-11-18 15:29:04 -05:00
|
|
|
(inputs
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
`(("aalib" ,aalib)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("bzip2" ,bzip2)
|
gnu: gst-plugins-good: Enable more plugins
* gnu/packages/gstreamer.scm (gst-plugins-good): New inputs:
cairo, gdk-pixbuf, flac, speex, libogg, libx11, zlib, libpng, libjpeg,
libXext, libxv, pulseaudio.
2014-11-19 09:15:30 -05:00
|
|
|
("cairo" ,cairo)
|
|
|
|
("flac" ,flac)
|
2021-12-02 07:16:13 -05:00
|
|
|
("librsvg" ,(librsvg-for-system))
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("glib" ,glib)
|
|
|
|
("glib-networking" ,glib-networking)
|
|
|
|
("glu" ,glu)
|
2019-03-16 11:04:02 -04:00
|
|
|
("gtk+" ,gtk+)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("jack" ,jack-2)
|
2018-10-16 12:54:17 -04:00
|
|
|
("lame" ,lame)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
("libavc1394" ,libavc1394)
|
|
|
|
("libcaca" ,libcaca)
|
|
|
|
("libdv" ,libdv)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("libgudev" ,libgudev)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
("libiec61883" ,libiec61883)
|
gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.
* gnu/packages/abiword.scm (abiword)[inputs]: Change from LIBJPEG to
LIBJPEG-TURBO.
* gnu/packages/admin.scm (testdisk)[inputs]: Likewise.
* gnu/packages/algebra.scm (giac)[inputs]: Likewise.
* gnu/packages/animation.scm (synfig)[inputs]: Likewise.
* gnu/packages/astronomy.scm (gnuastro, celestia)[inputs]: Likewise.
* gnu/packages/cdrom.scm (dvdstyler)[inputs]: Likewise.
* gnu/packages/cran.scm (r-jpeg, r-tiff, r-readbitmap)[inputs]: Likewise.
* gnu/packages/cups.scm (cups-filters, hplip)[inputs]: Likewise.
* gnu/packages/display-managers.scm (slim)[inputs]: Likewise.
* gnu/packages/ebook.scm (fbreader)[inputs]: Likewise.
* gnu/packages/emacs.scm (emacs)[inputs]: Likewise.
* gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Likewise.
* gnu/packages/fltk.scm (fltk, ntk)[inputs]: Likewise.
* gnu/packages/fontutils.scm (fontforge)[inputs]: Likewise.
* gnu/packages/freedesktop.scm (weston)[inputs]: Likewise.
* gnu/packages/game-development.scm (sfml, allegro, aseprite, python-pygame,
eureka, ioquake3)[inputs]: Likewise.
* gnu/packages/games.scm (adanaxisgpl, freedroidrpg, irrlicht, minetest,
fizmo, supertuxkart, gzdoom, xmoto, xonotic)[inputs]: Likewise.
* gnu/packages/gd.scm (gd, perl-gd)[inputs]: Likewise.
* gnu/packages/ghostscript.scm (lcms)[inputs]: Likewise.
(ghostscript)[inputs, native-inputs]: Likewise.
* gnu/packages/gimp.scm (gegl, gimp)[inputs]: Likewise.
* gnu/packages/gnome.scm (libgnomeui, eog, tracker-miners, gthumb)[inputs]: Likewise.
* gnu/packages/gnunet.scm (libextractor)[inputs]: Likewise.
* gnu/packages/gnustep.scm (windowmaker)[inputs]: Likewise.
* gnu/packages/graphics.scm (blender, blender-2.79, openimageio,
openscenegraph, openscenegraph-3.4, povray, fgallery)[inputs]: Likewise.
* gnu/packages/graphviz.scm (graphviz)[inputs]: Likewise.
* gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Likewise.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Likewise.
* gnu/packages/image-processing.scm (dcmtk, mia, vtk, opencv, vips, nip2, vxl,
insight-toolkit)[inputs]: Likewise.
* gnu/packages/image-viewers.scm (gpicview, luminance-hdr)[inputs]: Likewise.
* gnu/packages/image.scm (jpegoptim, libtiff, leptonica, imlib2, freeimage,
vigra, libwebp, libmng, jasper, steghide, jp2a)[inputs]: Likewise.
* gnu/packages/imagemagick.scm (imagemagick, graphicsmagick)[inputs]: Likewise.
* gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9, openjdk11,
openjdk12)[inputs]: Likewise.
* gnu/packages/kde-frameworks.scm (khtml)[inputs]: Likewise.
* gnu/packages/kodi.scm (kodi)[inputs]: Likewise.
* gnu/packages/machine-learning.scm (dlib, tensorflow)[inputs]: Likewise.
* gnu/packages/mate.scm (atril, eom)[inputs]: Likewise.
* gnu/packages/maths.scm (hdf4, hdf-java, hdf-eos2, netcdf)[inputs]: Likewise.
* gnu/packages/netpbm.scm (netpbm)[inputs]: Likewise.
* gnu/packages/pdf.scm (zathura-pdf-mupdf, podofo, mupdf, fbida)[inputs]: Likewise.
* gnu/packages/photo.scm (libraw, libpano13, enblend-enfuse, darktable, hugin,
rawtherapee)[inputs]: Likewise.
* gnu/packages/prolog.scm (swi-prolog)[native-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-hdf4, python-pillow)[inputs]: Likewise.
* gnu/packages/qt.scm (qtbase, qtwebkit)[inputs]: Likewise.
* gnu/packages/rdesktop.scm (freerdp)[inputs]: Likewise.
* gnu/packages/scanner.scm (sane-backends, xsane)[inputs]: Likewise.
* gnu/packages/scheme.scm (racket)[inputs]: Likewise.
* gnu/packages/scribus.scm (scribus)[inputs]: Likewise.
* gnu/packages/sdl.scm (sdl-image)[propagated-inputs]: Likewise.
(guile-sdl)[native-inputs]: Likewise.
* gnu/packages/spice.scm (spice-gtk)[inputs]: Likewise.
* gnu/packages/statistics.scm (r-with-tests)[inputs]: Likewise.
* gnu/packages/tcl.scm (perl-tk)[inputs]: Likewise.
* gnu/packages/upnp.scm (readymedia)[inputs]: Likewise.
* gnu/packages/video.scm (mplayer, mpv, v4l-utils, motion)[inputs]: Likewise.
* gnu/packages/web-browsers.scm (dillo, links)[inputs]: Likewise.
* gnu/packages/web.scm (netsurf)[inputs]: Likewise.
* gnu/packages/webkit.scm (webkitgtk)[inputs]: Likewise.
* gnu/packages/wine.scm (wine)[inputs]: Likewise.
* gnu/packages/wv.scm (wv)[inputs]: Likewise.
* gnu/packages/wxwidgets.scm (wxwidgets, wxwidgets-2)[inputs]: Likewise.
* gnu/packages/xdisorg.scm (xscreensaver)[inputs]: Likewise.
* gnu/packages/xfce.scm (tumbler)[inputs]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[inputs]: Likewise.
* gnu/packages/xorg.scm (xpra)[inputs]: Likewise.
2020-01-17 13:27:01 -05:00
|
|
|
("libjpeg" ,libjpeg-turbo)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
("libpng" ,libpng)
|
|
|
|
("libshout" ,libshout)
|
|
|
|
("libsoup" ,libsoup)
|
|
|
|
("libvpx" ,libvpx)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxdamage" ,libxdamage)
|
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxshm" ,libxshmfence)
|
|
|
|
("mesa" ,mesa)
|
2018-10-16 12:54:17 -04:00
|
|
|
("mpg123" ,mpg123)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
("orc" ,orc)
|
gnu: gst-plugins-good: Enable more plugins
* gnu/packages/gstreamer.scm (gst-plugins-good): New inputs:
cairo, gdk-pixbuf, flac, speex, libogg, libx11, zlib, libpng, libjpeg,
libXext, libxv, pulseaudio.
2014-11-19 09:15:30 -05:00
|
|
|
("pulseaudio" ,pulseaudio)
|
gnu: gst-plugins-good: Add more inputs and remove unneeded ones.
* gnu/packages/gstreamer.scm (gst-plugins-good): Move gst-plugins-base
from 'native-inputs' to 'inputs'.
[inputs]: Add aalib, jack, libavc1394, libcaca, libdv, libiec61833,
libshout, libsoup, libvpx, orc, taglib and wavpack. Remove glib,
gstreamer, libogg, libx11, libxext, libxv, and zlib.
[arguments]: Remove.
2015-04-07 02:49:05 -04:00
|
|
|
("speex" ,speex)
|
|
|
|
("taglib" ,taglib)
|
2018-10-16 12:54:17 -04:00
|
|
|
("twolame" ,twolame)
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
("v4l-utils" ,v4l-utils)
|
|
|
|
("wavpack" ,wavpack)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gstreamer gst-plugins-base))
|
gnu: gst-plugins-good: Update package definition.
* gnu/packages/gstreamer.scm (gst-plugins-good): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['disable-tests-for-armhf]: Remove phase.
['disable-failing-tests]: Remove phase.
['patch-docbook-xml]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, gettext-minimal, gobject-introspection,
gsettings-desktop-schemas, perl, libxml2 and xorg-server-for-tests.
[inputs]: Add bzip2, glib, glib-networking, glu, libgudev, libx11,
libxdamage, libxfixes, libxext, libxshmfence, mesa and v4l-utils.
Remove gst-plugins-base.
[propagated-inputs]: Add gstreamer and gst-plugins-base.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-24 23:58:52 -04:00
|
|
|
(synopsis "GStreamer plugins and helper libraries")
|
|
|
|
(description "GStreamer-Plugins-Good is a collection of plug-ins you'd want
|
|
|
|
to have right next to you on the battlefield. Shooting sharp and making no
|
|
|
|
mistakes, these plug-ins have it all: good looks, good code, and good
|
|
|
|
licensing. Documented and dressed up in tests. If you're looking for a role
|
|
|
|
model to base your own plug-in on, here it is.")
|
2016-03-29 12:08:42 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2016-08-15 10:20:09 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2013-10-30 17:58:39 -04:00
|
|
|
|
2016-01-21 06:07:31 -05:00
|
|
|
(define-public gst-plugins-bad
|
|
|
|
(package
|
|
|
|
(name "gst-plugins-bad")
|
2021-10-08 15:02:05 -04:00
|
|
|
(version "1.18.5")
|
2016-01-21 06:07:31 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://gstreamer.freedesktop.org/src/"
|
|
|
|
name "/" name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 15:02:05 -04:00
|
|
|
"13k7mm2wmsbhd04a20v9lj4afpf0w33ambpwlrw8bl7hjhxr4r51"))
|
2021-10-04 17:50:51 -04:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Delete bundled copy of usrsctp.
|
|
|
|
(delete-file-recursively "ext/sctp/usrsctp")))))
|
2020-01-20 15:41:41 -05:00
|
|
|
(build-system meson-build-system)
|
2016-01-21 06:07:31 -05:00
|
|
|
(arguments
|
2021-10-04 17:50:51 -04:00
|
|
|
`(#:configure-flags '("-Dsctp-internal-usrsctp=disabled")
|
2021-04-12 05:36:12 -04:00
|
|
|
#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
2021-10-04 17:50:51 -04:00
|
|
|
#:phases
|
2020-01-20 15:41:41 -05:00
|
|
|
(modify-phases %standard-phases
|
2020-05-21 16:10:02 -04:00
|
|
|
,@%common-gstreamer-phases
|
2020-01-21 15:12:48 -05:00
|
|
|
,@(if (string-prefix? "arm" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
|
|
|
;; Disable test that fails on ARMv7.
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/1188
|
|
|
|
`((add-after 'unpack 'disable-asfmux-test
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/check/meson.build"
|
|
|
|
(("\\[\\['elements/asfmux\\.c'\\]\\],")
|
2021-10-08 15:02:05 -04:00
|
|
|
"")))))
|
2020-01-21 15:12:48 -05:00
|
|
|
'())
|
2020-10-11 10:46:19 -04:00
|
|
|
(add-after 'unpack 'adjust-tests
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
|
|
|
(let ((gst-plugins-good (assoc-ref (or native-inputs inputs)
|
|
|
|
"gst-plugins-good")))
|
|
|
|
(substitute* "tests/check/meson.build"
|
|
|
|
;; Make gst-plugin-good available for tests, see
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1426
|
|
|
|
(("'GST_PLUGIN_SYSTEM_PATH_1_0', ''")
|
|
|
|
(string-append "'GST_PLUGIN_SYSTEM_PATH_1_0', '"
|
|
|
|
gst-plugins-good "/lib/gstreamer-1.0'"))
|
2020-11-25 19:08:35 -05:00
|
|
|
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1136
|
|
|
|
((".*elements/msdkh264enc\\.c.*") "")
|
|
|
|
((".*elements/svthevcenc\\.c.*") "")
|
|
|
|
|
2021-11-12 21:23:54 -05:00
|
|
|
;; The 'elements_shm.test_shm_live' test sometimes times out
|
|
|
|
;; (see:
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/790).
|
|
|
|
((".*'elements/shm\\.c'.*") "")
|
|
|
|
|
2020-11-25 19:08:35 -05:00
|
|
|
;; FIXME: Why is this failing.
|
|
|
|
((".*elements/dash_mpd\\.c.*") "")
|
|
|
|
|
2020-11-13 06:18:14 -05:00
|
|
|
;; These tests are flaky and occasionally time out:
|
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/932
|
|
|
|
((".*elements/curlhttpsrc\\.c.*") "")
|
2020-10-11 10:46:19 -04:00
|
|
|
;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1412
|
2021-10-27 22:44:58 -04:00
|
|
|
((".*elements/dtls\\.c.*") ""))
|
|
|
|
(substitute* "tests/check/elements/zxing.c"
|
|
|
|
;; zxing 1.2.0 seemingly changed the type representation of
|
|
|
|
;; the EAN_13 structure; disable it.
|
|
|
|
((".*\"EAN_13\".*")
|
|
|
|
"")))))
|
2021-04-12 05:36:12 -04:00
|
|
|
(add-before 'check 'pre-check
|
|
|
|
(lambda _
|
|
|
|
;; Tests require a running X server.
|
|
|
|
(system "Xvfb :1 +extension GLX &")
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
;; Tests write to $HOME.
|
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
;; Tests look for $XDG_RUNTIME_DIR.
|
|
|
|
(setenv "XDG_RUNTIME_DIR" (getcwd))
|
|
|
|
;; For missing '/etc/machine-id'.
|
2021-10-08 15:02:05 -04:00
|
|
|
(setenv "DBUS_FATAL_WARNINGS" "0"))))))
|
2016-01-21 06:07:31 -05:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gstreamer gst-plugins-base))
|
2016-01-21 06:07:31 -05:00
|
|
|
(native-inputs
|
2021-04-12 05:36:12 -04:00
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
|
2016-01-21 06:07:31 -05:00
|
|
|
("gobject-introspection" ,gobject-introspection)
|
2021-04-12 05:36:12 -04:00
|
|
|
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
2020-10-11 10:46:19 -04:00
|
|
|
("gst-plugins-good" ,gst-plugins-good) ;for tests
|
2021-04-12 05:36:12 -04:00
|
|
|
("perl" ,perl)
|
2016-01-21 06:07:31 -05:00
|
|
|
("pkg-config" ,pkg-config)
|
2021-04-12 05:36:12 -04:00
|
|
|
("python" ,python-wrapper)
|
|
|
|
("xorg-server" ,xorg-server-for-tests)))
|
2016-01-21 06:07:31 -05:00
|
|
|
(inputs
|
|
|
|
`(("bluez" ,bluez)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("bzip2" ,bzip2)
|
|
|
|
("cairo" ,cairo)
|
|
|
|
;; ("ccextractor" ,ccextractor)
|
|
|
|
("chromaprint" ,chromaprint)
|
2016-01-21 06:07:31 -05:00
|
|
|
("curl" ,curl)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("directfb" ,directfb)
|
|
|
|
;;("dssim" ,dssim)
|
|
|
|
("faac" ,faac)
|
2016-01-21 06:07:31 -05:00
|
|
|
("faad2" ,faad2)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("flite" ,flite)
|
2016-01-21 06:07:31 -05:00
|
|
|
("fluidsynth" ,fluidsynth)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("glib" ,glib)
|
|
|
|
("glib-networking" ,glib-networking)
|
|
|
|
("glu" ,glu)
|
|
|
|
("gsm" ,gsm)
|
2016-01-21 06:07:31 -05:00
|
|
|
("gtk+" ,gtk+)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("iqa" ,iqa)
|
2016-01-21 06:07:31 -05:00
|
|
|
("ladspa" ,ladspa)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("lcms" ,lcms)
|
|
|
|
("libaom" ,libaom)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libass" ,libass)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libbs2b" ,libbs2b)
|
|
|
|
("libdc1394" ,libdc1394)
|
|
|
|
("libdca" ,libdca)
|
|
|
|
("libde265" ,libde265)
|
|
|
|
("libdrm" ,libdrm)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libdvdnav" ,libdvdnav)
|
|
|
|
("libdvdread" ,libdvdread)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libexif" ,libexif)
|
|
|
|
("libfdk" ,libfdk)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libgcrypt" ,libgcrypt)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libgme" ,libgme)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libgudev" ,libgudev)
|
|
|
|
("libkate" ,libkate)
|
2022-07-17 17:24:22 -04:00
|
|
|
,@(if (target-x86?)
|
|
|
|
`(("libmfx" ,mediasdk))
|
|
|
|
'())
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libmms" ,libmms)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libmodplug" ,libmodplug)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libmpcdec" ,libmpcdec)
|
2020-11-16 04:46:28 -05:00
|
|
|
("libnice" ,libnice)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libofa" ,libofa)
|
|
|
|
("libopenmpt" ,libopenmpt)
|
2016-01-21 06:07:31 -05:00
|
|
|
("librsvg" ,librsvg)
|
|
|
|
("libsndfile" ,libsndfile)
|
|
|
|
("libsrtp" ,libsrtp)
|
|
|
|
("libssh2" ,libssh2)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libtiff" ,libtiff)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libusb" ,libusb)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libva" ,libva)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libvdpau" ,libvdpau)
|
|
|
|
("libwebp" ,libwebp)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxkbcommon" ,libxkbcommon)
|
2016-01-21 06:07:31 -05:00
|
|
|
("libxml2" ,libxml2)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("libxshm" ,libxshmfence)
|
|
|
|
("lilv" ,lilv)
|
2016-01-21 06:07:31 -05:00
|
|
|
("lrdf" ,lrdf)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("lv2" ,lv2)
|
2016-01-21 06:07:31 -05:00
|
|
|
("mesa" ,mesa)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("mjpegtools" ,mjpegtools)
|
2016-01-21 06:07:31 -05:00
|
|
|
("neon" ,neon)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("nettle" ,nettle)
|
2016-01-21 06:07:31 -05:00
|
|
|
("openal" ,openal)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
;; ("opencv" ,opencv)
|
|
|
|
("openexr" ,openexr)
|
|
|
|
("openh264" ,openh264)
|
2016-01-21 06:07:31 -05:00
|
|
|
("openjpeg" ,openjpeg)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
;; ("openni2" ,openni2)
|
|
|
|
("opensles" ,opensles)
|
2016-01-21 06:07:31 -05:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("opus" ,opus)
|
|
|
|
("orc" ,orc)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("pango" ,pango)
|
|
|
|
("rtmp" ,rtmpdump)
|
|
|
|
("sbc" ,sbc)
|
|
|
|
("sctp" ,lksctp-tools)
|
2016-01-21 06:07:31 -05:00
|
|
|
("soundtouch" ,soundtouch)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("spandsp" ,spandsp)
|
2021-10-04 17:52:15 -04:00
|
|
|
("srt" ,srt)
|
2022-07-17 17:24:22 -04:00
|
|
|
,@(if (target-x86?)
|
|
|
|
`(("svthevcenc" ,svt-hevc))
|
|
|
|
'())
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("tinyalsa" ,tinyalsa)
|
|
|
|
("transcode" ,transcode)
|
2021-10-04 17:50:51 -04:00
|
|
|
("usrsctp" ,usrsctp)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("v4l" ,v4l-utils)
|
2022-04-19 10:09:53 -04:00
|
|
|
("voaacenc" ,vo-aacenc)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("voamrwbenc" ,vo-amrwbenc)
|
|
|
|
("vulkan-headers" ,vulkan-headers)
|
|
|
|
("vulkan-loader" ,vulkan-loader)
|
2016-10-24 15:53:41 -04:00
|
|
|
("x265" ,x265)
|
gnu: gst-plugins-bad: Add missing inputs to enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Add bzip2,
cairo, chromaprint, directfb, faac, flite, glib, glib-networking,
glu, gsm, iqa, lcms, libaom, libbs2b, libdc1394, libdca, libde265,
libdrm, libexif, libfdk, libgme, libmfx, libmms, libmpcdec, libnice,
libofa, libopenmpt, libtiff, libva, libx11, libxcb, libxext, libxshm,
lilv, lv2, mjpegtools, nettle, openh264, opensles, pango, rtmpdump, sbc,
sctp, spandsp, srt, svt-hevc, transcode, v4l-utils, vo-aacenc, vo-amrwbenc,
vulkan-headers, vulkan-loader, webrtc-audio-processing, wildmidi,
wpebackend-fdo, zbar and zxing-cpp.
[phases](adjust-tests): Disable msdkh264enc and svthevcenc tests.
Reenable line21.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-04-12 05:36:13 -04:00
|
|
|
("wayland" ,wayland)
|
|
|
|
("webrtcdsp" ,webrtc-audio-processing)
|
|
|
|
("wildmidi" ,wildmidi)
|
|
|
|
("wpebackend-fdo" ,wpebackend-fdo)
|
|
|
|
("zbar" ,zbar)
|
2021-10-27 22:44:58 -04:00
|
|
|
("zxing" ,zxing-cpp-1.2)))
|
2016-11-05 11:40:13 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2016-01-21 06:07:31 -05:00
|
|
|
(synopsis "Plugins for the GStreamer multimedia library")
|
|
|
|
(description
|
|
|
|
"GStreamer Bad Plug-ins is a set of plug-ins whose quality aren't up to
|
|
|
|
par compared to the rest.")
|
2016-08-15 10:20:09 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2016-01-21 06:07:31 -05:00
|
|
|
|
2015-07-07 02:36:18 -04:00
|
|
|
(define-public gst-plugins-ugly
|
|
|
|
(package
|
|
|
|
(name "gst-plugins-ugly")
|
2021-10-08 15:08:30 -04:00
|
|
|
(version "1.18.5")
|
2015-07-07 02:36:18 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2020-07-06 00:50:22 -04:00
|
|
|
(uri
|
|
|
|
(string-append "https://gstreamer.freedesktop.org/src/"
|
|
|
|
name "/" name "-" version ".tar.xz"))
|
2015-07-07 02:36:18 -04:00
|
|
|
(sha256
|
2021-10-08 15:08:30 -04:00
|
|
|
(base32 "1nb6kz3gbn8r0sld6xkm16qpgyb2bvhafb7sff9rgagqk0z80cnz"))))
|
2020-01-20 15:43:03 -05:00
|
|
|
(build-system meson-build-system)
|
2020-05-21 16:10:02 -04:00
|
|
|
(arguments
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
2020-07-06 00:50:22 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2020-11-27 13:01:01 -05:00
|
|
|
,@%common-gstreamer-phases
|
2020-10-11 10:46:19 -04:00
|
|
|
(add-before 'check 'pre-check
|
2020-07-06 00:50:22 -04:00
|
|
|
(lambda _
|
|
|
|
;; Tests require a running X server.
|
|
|
|
(system "Xvfb :1 +extension GLX &")
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
;; Tests write to $HOME.
|
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
;; Tests look for $XDG_RUNTIME_DIR.
|
|
|
|
(setenv "XDG_RUNTIME_DIR" (getcwd))
|
|
|
|
;; For missing '/etc/machine-id'.
|
2021-10-08 15:08:30 -04:00
|
|
|
(setenv "DBUS_FATAL_WARNINGS" "0"))))))
|
2020-07-06 00:50:22 -04:00
|
|
|
(native-inputs
|
2020-10-11 10:46:19 -04:00
|
|
|
`(("gettext" ,gettext-minimal)
|
2020-07-06 00:50:22 -04:00
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
|
|
|
("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("python-wrapper" ,python-wrapper)
|
|
|
|
("xorg-server" ,xorg-server-for-tests)))
|
2015-07-07 02:36:18 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list glib
|
|
|
|
glib-networking
|
|
|
|
liba52
|
|
|
|
libcdio
|
|
|
|
libdvdread
|
|
|
|
libmpeg2
|
|
|
|
libx264
|
|
|
|
opencore-amr
|
|
|
|
orc))
|
2020-07-06 00:50:22 -04:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gstreamer gst-plugins-base))
|
2020-07-06 00:50:22 -04:00
|
|
|
(synopsis "GStreamer plugins and helper libraries")
|
|
|
|
(description "Gst-Plugins-Ugly are the ones that might have a patent noose
|
|
|
|
around their neck, or a lock-up license, or any other problem that makes you
|
|
|
|
think twice about shipping them.")
|
2016-03-29 05:22:31 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2016-08-15 10:20:09 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2015-07-07 02:36:18 -04:00
|
|
|
|
2015-04-10 09:01:10 -04:00
|
|
|
(define-public gst-libav
|
|
|
|
(package
|
|
|
|
(name "gst-libav")
|
2021-10-08 15:12:46 -04:00
|
|
|
(version "1.18.5")
|
2021-10-08 14:31:54 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/" name "/"
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
2021-10-08 15:12:46 -04:00
|
|
|
(base32 "0j55jgk9sbhinfx2gsg21q609x6yzrixrn5xxlxd378fj6500bl2"))))
|
2020-01-20 15:43:32 -05:00
|
|
|
(build-system meson-build-system)
|
2015-04-10 09:01:10 -04:00
|
|
|
(native-inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
(list perl pkg-config python-wrapper ruby))
|
2015-04-10 09:01:10 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list ffmpeg))
|
2020-07-06 00:51:06 -04:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gstreamer gst-plugins-base))
|
2020-07-06 00:51:06 -04:00
|
|
|
(synopsis "GStreamer plugins and helper libraries")
|
|
|
|
(description "Gst-Libav contains a GStreamer plugin for using the encoders,
|
|
|
|
decoders, muxers, and demuxers provided by FFmpeg.")
|
gnu: Use HTTPS for supported freedesktop.org home pages.
* gnu/packages/fontutils.scm (fontconfig)[home-page]: Use HTTPS.
* gnu/packages/freedesktop.scm (python-pyxdg, accountsservice)
(modem-manager, telepathy-mission-control, telepathy-mission-control)
(colord-gtk, desktop-file-utils)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (libspectre)[home-page]: Likewise.
* gnu/packages/glib.scm (dbus, dbus-glib, telepathy-glib)[home-page]:
Likewise.
* gnu/packages/gnome.scm (shared-mime-info, hicolor-icon-theme)
(libxklavier, colord, upower)[home-page]: Likewise.
* gnu/packages/gstreamer.scm (orc, python-gst)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (sound-theme-freedesktop)[home-page]:
Likewise.
* gnu/packages/libreoffice.scm (libexttextcat)[home-page]: Likewise.
* gnu/packages/polkit.scm (polkit-gnome, polkit-gnome)[home-page]:
Likewise.
* gnu/packages/pulseaudio.scm (pavucontrol)[home-page]: Likewise.
* gnu/packages/python.scm (python-dbus)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (startup-notification)[home-page]: Likewise.
2018-02-24 07:44:26 -05:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2020-07-06 00:51:06 -04:00
|
|
|
(license license:lgpl2.0+)))
|
2016-03-06 01:49:35 -05:00
|
|
|
|
2020-01-12 12:42:24 -05:00
|
|
|
(define-public gst-editing-services
|
|
|
|
(package
|
|
|
|
(name "gst-editing-services")
|
2021-10-08 15:15:47 -04:00
|
|
|
(version "1.18.5")
|
2020-01-12 12:42:24 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/" name "/"
|
2020-10-11 10:46:19 -04:00
|
|
|
"gst-editing-services-" version ".tar.xz"))
|
2020-01-12 12:42:24 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 15:15:47 -04:00
|
|
|
"1x8db4021qv4ypq1g6n5q2awrb7glr4xp1h650c3w7q59lwsix4a"))))
|
2020-01-12 12:42:24 -05:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(arguments
|
|
|
|
;; FIXME: 16/22 failing tests.
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:tests? #f
|
2021-04-12 05:36:14 -04:00
|
|
|
#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
2020-05-21 16:10:02 -04:00
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
,@%common-gstreamer-phases)))
|
2021-04-12 05:36:14 -04:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gstreamer gst-plugins-base))
|
2020-01-12 12:42:24 -05:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list glib glib-networking gtk+ libxml2))
|
2020-01-12 12:42:24 -05:00
|
|
|
(native-inputs
|
|
|
|
`(("flex" ,flex)
|
2020-11-22 08:36:03 -05:00
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
("glib:bin" ,glib "bin")
|
2020-01-12 12:42:24 -05:00
|
|
|
("gst-plugins-bad" ,gst-plugins-bad)
|
|
|
|
("gst-plugins-good" ,gst-plugins-good)
|
|
|
|
("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)
|
2021-04-12 05:36:14 -04:00
|
|
|
("python" ,python-wrapper)))
|
2020-01-12 12:42:24 -05:00
|
|
|
(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 audio/video
|
|
|
|
non-linear editors.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2020-11-22 12:54:14 -05:00
|
|
|
(define-public gst-plugins/selection
|
|
|
|
(lambda* (pkg #:key plugins configure-flags)
|
|
|
|
"Build PKG with only PLUGINS enabled. Optionally, if CONFIGURE-FLAGS are
|
|
|
|
given, also pass them to the build system instead of the ones used by PKG."
|
|
|
|
(package/inherit pkg
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments pkg)
|
|
|
|
((#:configure-flags flags `(,@(or configure-flags '())))
|
|
|
|
`(append
|
|
|
|
(list
|
|
|
|
,@(map (lambda (plugin)
|
|
|
|
(string-append "-D" plugin "=enabled"))
|
|
|
|
plugins))
|
|
|
|
(list ,@(or configure-flags flags))))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
|
|
|
(add-after 'unpack 'disable-auto-plugins
|
|
|
|
(lambda _
|
|
|
|
(substitute* "meson_options.txt"
|
|
|
|
(("'auto'") "'disabled'"))
|
|
|
|
#t)))))))))
|
|
|
|
|
2016-03-06 01:49:35 -05:00
|
|
|
(define-public python-gst
|
|
|
|
(package
|
|
|
|
(name "python-gst")
|
2021-10-08 15:17:06 -04:00
|
|
|
(version "1.18.5")
|
2016-03-06 01:49:35 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://gstreamer.freedesktop.org/src/gst-python/"
|
|
|
|
"gst-python-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-10-08 15:17:06 -04:00
|
|
|
"0lmwwmr3wm56qlrdrb0d5cpmqxkcmarz61wmp1nrv5852f3qadjk"))))
|
2020-01-20 15:44:02 -05:00
|
|
|
(build-system meson-build-system)
|
2016-03-06 01:49:35 -05:00
|
|
|
(arguments
|
2021-10-08 14:31:54 -04:00
|
|
|
`(#:modules ((guix build meson-build-system)
|
2020-01-20 15:44:02 -05:00
|
|
|
(guix build utils)
|
2019-07-13 17:58:33 -04:00
|
|
|
((guix build python-build-system) #:prefix python:))
|
2020-01-20 15:44:02 -05:00
|
|
|
#:imported-modules (,@%meson-build-system-modules
|
2016-03-06 01:49:35 -05:00
|
|
|
(guix build python-build-system))
|
|
|
|
#:configure-flags
|
2019-07-13 17:58:33 -04:00
|
|
|
(list (string-append
|
2020-01-20 15:44:02 -05:00
|
|
|
"-Dpygi-overrides-dir="
|
2022-04-04 12:17:29 -04:00
|
|
|
(python:site-packages %build-inputs %outputs) "/gi/overrides"))))
|
2016-03-06 01:49:35 -05:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config python))
|
2016-03-06 01:49:35 -05:00
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gst-plugins-base python-pygobject))
|
2016-03-29 04:58:11 -04:00
|
|
|
(home-page "https://gstreamer.freedesktop.org/")
|
2016-03-06 01:49:35 -05:00
|
|
|
(synopsis "GStreamer GObject Introspection overrides for Python")
|
|
|
|
(description
|
|
|
|
"This package contains GObject Introspection overrides for Python that can
|
|
|
|
be used by Python applications using GStreamer.")
|
2022-06-26 13:17:24 -04:00
|
|
|
(license license:lgpl2.1+)
|
|
|
|
(properties `((upstream-name . "gst-python")))))
|
2017-12-03 05:37:15 -05:00
|
|
|
|
|
|
|
(define-public gst123
|
|
|
|
(package
|
|
|
|
(name "gst123")
|
|
|
|
(version "0.3.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://space.twc.de/~stefan/gst123/gst123-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0zaa117n4wkya9p903vkj8hj58lmdb66pxsdx5wwcv7nffbp5d67"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list gtk+-2 ncurses gstreamer gst-plugins-base))
|
2017-12-03 05:37:15 -05:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list pkg-config))
|
2021-02-28 05:08:02 -05:00
|
|
|
(home-page "https://space.twc.de/~stefan/gst123.php")
|
2017-12-03 05:37:15 -05:00
|
|
|
(synopsis "Flexible command line media player based on gstreamer")
|
|
|
|
(description "The program gst123 is designed to be a more flexible command
|
|
|
|
line player in the spirit of ogg123 and mpg123, based on the gstreamer media
|
|
|
|
framework. It plays all file formats gstreamer supports, so if you have a
|
|
|
|
music collection which contains different file formats, like flac, ogg and
|
|
|
|
mp3, you can use gst123 to play all your music files.")
|
|
|
|
(license license:lgpl2.0+)))
|