nixpkgs/pkgs/development/libraries/gstreamer/bad/default.nix

74 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, meson, ninja, gettext
, pkgconfig, python, gst-plugins-base, orc
, faacSupport ? false, faac ? null
, faad2, libass, libkate, libmms
, libmodplug, mpeg2dec
2013-12-23 15:36:37 +00:00
, openjpeg, libopus, librsvg
, wildmidi, fluidsynth, libvdpau, wayland
, libwebp, xvidcore, gnutls, mjpegtools
2018-03-14 19:15:06 +00:00
, libGLU_combined, libintl, libgme
, openssl, x265, libxml2
2013-12-23 15:36:37 +00:00
}:
assert faacSupport -> faac != null;
2015-04-09 01:54:51 +00:00
let
inherit (stdenv.lib) optional;
2015-04-09 01:54:51 +00:00
in
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
2018-03-30 19:10:30 +00:00
name = "gst-plugins-bad-1.14.0";
2013-12-23 15:36:37 +00:00
meta = with stdenv.lib; {
description = "Gstreamer Bad Plugins";
2017-09-16 19:28:31 +00:00
homepage = "https://gstreamer.freedesktop.org";
longDescription = ''
a set of plug-ins that aren't up to par compared to the
rest. They might be close to being good quality, but they're missing
something - be it a good code review, some documentation, a set of tests,
a real live maintainer, or some actual wide use.
'';
license = licenses.lgpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
2018-04-24 23:35:54 +00:00
maintainers = with maintainers; [ matthewbauer ];
2013-12-23 15:36:37 +00:00
};
preConfigure = ''
patchShebangs .
'';
patches = [
(fetchpatch {
url = "https://bug794856.bugzilla-attachments.gnome.org/attachment.cgi?id=370409";
sha256 = "0hy0rcn35alq65yqwri4fqjz2hf3nyyg5c7rnndk51msmqjxpprk";
})
./fix_pkgconfig_includedir.patch
];
2013-12-23 15:36:37 +00:00
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz";
2018-03-30 19:10:30 +00:00
sha256 = "17sgzgx1c54k5rzz7ljyz3is0n7yj56k74vv05h8z1gjnsnjnppd";
2013-12-23 15:36:37 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 12:39:30 +00:00
nativeBuildInputs = [ meson ninja pkgconfig python gettext ];
2013-12-23 15:36:37 +00:00
buildInputs = [
gst-plugins-base orc
faad2 libass libkate libmms
libmodplug mpeg2dec
2013-12-23 15:36:37 +00:00
openjpeg libopus librsvg
2015-04-09 01:54:51 +00:00
fluidsynth libvdpau
libwebp xvidcore gnutls libGLU_combined
libgme openssl x265 libxml2
2018-03-14 19:15:06 +00:00
libintl
2015-04-09 01:54:51 +00:00
]
++ optional faacSupport faac
++ optional stdenv.isLinux wayland
# wildmidi requires apple's OpenAL
# TODO: package apple's OpenAL, fix wildmidi, include on Darwin
++ optional (!stdenv.isDarwin) wildmidi
# TODO: mjpegtools uint64_t is not compatible with guint64 on Darwin
++ optional (!stdenv.isDarwin) mjpegtools;
2013-12-23 15:36:37 +00:00
}