2013-12-23 16:36:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python
|
|
|
|
, gst-plugins-base, orc, bzip2
|
|
|
|
, libv4l, libdv, libavc1394, libiec61883
|
|
|
|
, libvpx, speex, flac, taglib
|
|
|
|
, cairo, gdk_pixbuf, aalib, libcaca
|
2015-05-27 21:42:15 +02:00
|
|
|
, libsoup, libpulseaudio, libintlOrEmpty
|
2013-12-23 16:36:37 +01:00
|
|
|
}:
|
|
|
|
|
2015-04-09 03:53:06 +02:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optionals optionalString;
|
|
|
|
in
|
2013-12-23 16:36:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-12-05 11:05:48 +01:00
|
|
|
name = "gst-plugins-good-1.6.1";
|
2013-12-23 16:36:37 +01:00
|
|
|
|
2014-03-17 14:43:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Gstreamer Good Plugins";
|
|
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
|
|
longDescription = ''
|
|
|
|
a set of plug-ins that we consider to have good quality code,
|
|
|
|
correct functionality, our preferred license (LGPL for the plug-in
|
|
|
|
code, LGPL or LGPL-compatible for the supporting library).
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl2Plus;
|
2015-04-09 03:53:06 +02:00
|
|
|
platforms = platforms.unix;
|
2014-03-17 14:43:10 +01:00
|
|
|
maintainers = with maintainers; [ iyzsong ];
|
2013-12-23 16:36:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
|
2015-12-05 11:05:48 +01:00
|
|
|
sha256 = "0darc3058kbnql3mnlpizl0sq0hhli7vkm0rpqb7nywz14abim46";
|
2013-12-23 16:36:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gst-plugins-base orc bzip2
|
2015-04-09 03:53:06 +02:00
|
|
|
libdv libvpx speex flac taglib
|
2013-12-23 16:36:37 +01:00
|
|
|
cairo gdk_pixbuf aalib libcaca
|
2015-04-09 03:53:06 +02:00
|
|
|
libsoup
|
|
|
|
]
|
|
|
|
++ libintlOrEmpty
|
2015-05-27 21:42:15 +02:00
|
|
|
++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ];
|
2015-04-09 03:53:06 +02:00
|
|
|
|
|
|
|
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
|
2013-12-23 16:36:37 +01:00
|
|
|
}
|