d248aef1cf
Release notes: https://gstreamer.freedesktop.org/releases/gstreamer/1.8.1.html Tested with nox-review; this change does not introduce build breakage.
40 lines
997 B
Nix
40 lines
997 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.8.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 = "0cw9nc0079vmdp5r8hrrmglb1bzvsxy298j6yg25l6skqc493924";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
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
|
|
;
|
|
}
|