2013-12-23 15:36:37 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, gst-plugins-base, orc
|
2014-04-07 14:37:02 +01:00
|
|
|
, faacSupport ? false, faac ? null
|
|
|
|
, faad2, libass, libkate, libmms
|
2014-08-30 10:23:50 +01:00
|
|
|
, libmodplug, mpeg2dec, mpg123
|
2013-12-23 15:36:37 +00:00
|
|
|
, openjpeg, libopus, librsvg
|
2014-04-29 10:15:10 +01:00
|
|
|
, wildmidi, fluidsynth, libvdpau, wayland
|
2014-01-10 12:56:18 +00:00
|
|
|
, libwebp, xvidcore, gnutls
|
2015-04-09 02:54:51 +01:00
|
|
|
, mesa, libintlOrEmpty
|
2013-12-23 15:36:37 +00:00
|
|
|
}:
|
|
|
|
|
2014-04-07 14:37:02 +01:00
|
|
|
assert faacSupport -> faac != null;
|
|
|
|
|
2015-04-09 02:54:51 +01:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionalString;
|
|
|
|
in
|
2013-12-23 15:36:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-25 10:55:04 +00:00
|
|
|
name = "gst-plugins-bad-1.4.5";
|
2013-12-23 15:36:37 +00:00
|
|
|
|
2014-03-17 13:31:45 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Gstreamer Bad Plugins";
|
|
|
|
homepage = "http://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;
|
2015-04-09 02:54:51 +01:00
|
|
|
platforms = platforms.unix;
|
2014-03-17 13:31:45 +00:00
|
|
|
maintainers = with maintainers; [ iyzsong ];
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz";
|
2014-12-25 10:55:04 +00:00
|
|
|
sha256 = "0g4q9yqq71z32pz7zj54wigkcf438a2mcv5kvvwp4gb8a1rasbqm";
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gst-plugins-base orc
|
2014-04-07 14:37:02 +01:00
|
|
|
faad2 libass libkate libmms
|
2014-11-01 15:38:06 +00:00
|
|
|
libmodplug mpeg2dec mpg123
|
2013-12-23 15:36:37 +00:00
|
|
|
openjpeg libopus librsvg
|
2015-04-09 02:54:51 +01:00
|
|
|
fluidsynth libvdpau
|
2014-11-01 15:38:06 +00:00
|
|
|
libwebp xvidcore gnutls mesa
|
2015-04-09 02:54:51 +01:00
|
|
|
]
|
|
|
|
++ libintlOrEmpty
|
|
|
|
++ 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;
|
|
|
|
|
|
|
|
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
|
2013-12-23 15:36:37 +00:00
|
|
|
}
|