2013-12-23 16:36:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, yasm
|
2014-01-02 14:28:40 +01:00
|
|
|
, gst-plugins-base, orc, bzip2
|
2014-01-11 21:39:47 +01:00
|
|
|
, withSystemLibav ? true, libav ? null
|
2013-12-23 16:36:37 +01:00
|
|
|
}:
|
|
|
|
|
2015-12-05 11:05:48 +01: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 14:28:40 +01:00
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
|
2013-12-23 16:36:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-29 13:34:22 +02:00
|
|
|
name = "gst-libav-1.8.1";
|
2013-12-23 16:36:37 +01: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-05-29 13:34:22 +02:00
|
|
|
sha256 = "0cw9nc0079vmdp5r8hrrmglb1bzvsxy298j6yg25l6skqc493924";
|
2013-12-23 16:36:37 +01:00
|
|
|
};
|
|
|
|
|
2016-04-24 14:39:30 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
2014-01-02 14:28:40 +01:00
|
|
|
configureFlags = stdenv.lib.optionalString withSystemLibav
|
|
|
|
"--with-system-libav";
|
|
|
|
|
|
|
|
nativeBuildInputs = with stdenv.lib;
|
|
|
|
[ pkgconfig python ]
|
|
|
|
++ optional (!withSystemLibav) yasm
|
|
|
|
;
|
2013-12-23 16:36:37 +01:00
|
|
|
|
2014-01-02 14:28:40 +01:00
|
|
|
buildInputs = with stdenv.lib;
|
|
|
|
[ gst-plugins-base orc bzip2 ]
|
|
|
|
++ optional withSystemLibav libav
|
|
|
|
;
|
2013-12-23 16:36:37 +01:00
|
|
|
}
|