mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
7a6185d9a1
Fixes CVE-2016-9445, CVE-2016-9446, CVE-2016-9447.
40 lines
998 B
Nix
40 lines
998 B
Nix
{ stdenv, fetchurl, pkgconfig, python, yasm
|
|
, gst-plugins-base, orc, bzip2
|
|
, withSystemLibav ? true, libav ? null
|
|
}:
|
|
|
|
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
|
|
# http://gstreamer.freedesktop.org/releases/1.6/ for more info.
|
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-libav-1.10.1";
|
|
|
|
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";
|
|
sha256 = "1ivjbh5g0l5ykfpc16kq5x2jz8d4ignyha14jpiz3pz6w26qpci7";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
configureFlags = stdenv.lib.optionalString withSystemLibav
|
|
"--with-system-libav";
|
|
|
|
nativeBuildInputs = with stdenv.lib;
|
|
[ pkgconfig python ]
|
|
++ optional (!withSystemLibav) yasm
|
|
;
|
|
|
|
buildInputs = with stdenv.lib;
|
|
[ gst-plugins-base orc bzip2 ]
|
|
++ optional withSystemLibav libav
|
|
;
|
|
}
|