2013-12-23 15:36:37 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, yasm
|
2014-01-02 13:28:40 +00:00
|
|
|
, gst-plugins-base, orc, bzip2
|
2014-01-11 20:39:47 +00:00
|
|
|
, withSystemLibav ? true, libav ? null
|
2013-12-23 15:36:37 +00:00
|
|
|
}:
|
|
|
|
|
2015-12-05 10:05:48 +00:00
|
|
|
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
|
|
|
|
# http://gstreamer.freedesktop.org/releases/1.6/ for more info.
|
|
|
|
|
2014-01-02 13:28:40 +00:00
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
|
2013-12-23 15:36:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-24 17:40:20 +00:00
|
|
|
name = "gst-libav-1.8.0";
|
2013-12-23 15:36:37 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
|
2016-04-24 17:40:20 +00:00
|
|
|
sha256 = "0719njp8aarhvn038pijq6dmsnli0zlg146hyfs3rsdffs4f472s";
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
2014-01-02 13:28:40 +00:00
|
|
|
configureFlags = stdenv.lib.optionalString withSystemLibav
|
|
|
|
"--with-system-libav";
|
|
|
|
|
|
|
|
nativeBuildInputs = with stdenv.lib;
|
|
|
|
[ pkgconfig python ]
|
|
|
|
++ optional (!withSystemLibav) yasm
|
|
|
|
;
|
2013-12-23 15:36:37 +00:00
|
|
|
|
2014-01-02 13:28:40 +00:00
|
|
|
buildInputs = with stdenv.lib;
|
|
|
|
[ gst-plugins-base orc bzip2 ]
|
|
|
|
++ optional withSystemLibav libav
|
|
|
|
;
|
2013-12-23 15:36:37 +00:00
|
|
|
}
|