01c0be6ece
1.4.0 -> 1.4.1
36 lines
911 B
Nix
36 lines
911 B
Nix
{ stdenv, fetchurl, pkgconfig, python, yasm
|
|
, gst-plugins-base, orc, bzip2
|
|
, withSystemLibav ? true, libav ? null
|
|
}:
|
|
|
|
assert withSystemLibav -> libav != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-libav-1.4.1";
|
|
|
|
meta = {
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
|
|
sha256 = "fc125521187fa84f3210269a0eecc51f8a856802f1ca4bb251f118dab90c5a9d";
|
|
};
|
|
|
|
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
|
|
;
|
|
}
|