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
|
2017-08-02 22:50:51 +01:00
|
|
|
# https://gstreamer.freedesktop.org/releases/1.6/ for more info.
|
2015-12-05 10:05:48 +00:00
|
|
|
|
2014-01-02 13:28:40 +00:00
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
|
2013-12-23 15:36:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-26 15:21:52 +00:00
|
|
|
name = "gst-libav-1.10.4";
|
2013-12-23 15:36:37 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://gstreamer.freedesktop.org;
|
2013-12-23 15:36:37 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2017-07-16 10:49:06 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
|
2017-02-26 15:21:52 +00:00
|
|
|
sha256 = "12r68ri03mgbbwsxyn6yklgfsq32rwvyq83zw0aq7m73fp5gx83c";
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 13:39:30 +01: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
|
|
|
}
|