3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gstreamer/libav/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig
, python, yasm, gst-plugins-base, orc, bzip2
, gettext, withSystemLibav ? true, libav ? null
2013-12-23 15:36:37 +00:00
}:
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
# https://gstreamer.freedesktop.org/releases/1.6/ for more info.
2014-01-02 13:28:40 +00:00
assert withSystemLibav -> libav != null;
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
pname = "gst-libav";
version = "1.16.0";
2013-12-23 15:36:37 +00:00
meta = {
2017-09-16 20:28:31 +01:00
homepage = https://gstreamer.freedesktop.org;
2013-12-23 15:36:37 +00:00
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.unix;
2013-12-23 15:36:37 +00:00
};
src = fetchurl {
2019-10-02 17:59:16 +01:00
url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
sha256 = "16ixqpfrr7plaaz14n3vagr2q5xbfkv7gpmcsyndrkx98f813b6z";
2013-12-23 15:36:37 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 13:39:30 +01:00
2014-01-02 13:28:40 +00:00
nativeBuildInputs = with stdenv.lib;
[ meson ninja gettext pkgconfig python ]
2014-01-02 13:28:40 +00:00
++ optional (!withSystemLibav) yasm
;
2013-12-23 15:36:37 +00:00
2014-01-02 13:28:40 +00:00
buildInputs = with stdenv.lib;
[ gst-plugins-base orc bzip2 ]
++ optional withSystemLibav libav
;
mesonFlags = [
# Enables all features, so that we know when new dependencies are necessary.
"-Dauto_features=enabled"
];
2013-12-23 15:36:37 +00:00
}