gst-libav: Switch to meson build system

+4 -7
+4 -7
pkgs/development/libraries/gstreamer/libav/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, python, yasm 2 - , gst-plugins-base, orc, bzip2 3 - , withSystemLibav ? true, libav ? null 1 + { stdenv, fetchurl, meson, ninja, pkgconfig 2 + , python, yasm, gst-plugins-base, orc, bzip2 3 + , gettext, withSystemLibav ? true, libav ? null 4 4 }: 5 5 6 6 # Note that since gst-libav-1.6, libav is actually ffmpeg. See ··· 24 24 25 25 outputs = [ "out" "dev" ]; 26 26 27 - configureFlags = stdenv.lib.optionalString withSystemLibav 28 - "--with-system-libav"; 29 - 30 27 nativeBuildInputs = with stdenv.lib; 31 - [ pkgconfig python ] 28 + [ meson ninja gettext pkgconfig python ] 32 29 ++ optional (!withSystemLibav) yasm 33 30 ; 34 31