38 lines
977 B
Nix
38 lines
977 B
Nix
{ stdenv, fetchurl, meson, ninja, pkgconfig
|
|
, python, yasm, gst-plugins-base, orc, bzip2
|
|
, gettext, withSystemLibav ? true, libav ? null
|
|
}:
|
|
|
|
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
|
|
# https://gstreamer.freedesktop.org/releases/1.6/ for more info.
|
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-libav-${version}";
|
|
version = "1.14.2";
|
|
|
|
meta = {
|
|
homepage = https://gstreamer.freedesktop.org;
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
|
|
sha256 = "1pknqpjxq1l3vlprdsmxxwk0lwqa555fqd543k9vphngqlwiqdca";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = with stdenv.lib;
|
|
[ meson ninja gettext pkgconfig python ]
|
|
++ optional (!withSystemLibav) yasm
|
|
;
|
|
|
|
buildInputs = with stdenv.lib;
|
|
[ gst-plugins-base orc bzip2 ]
|
|
++ optional withSystemLibav libav
|
|
;
|
|
}
|