nixpkgs/pkgs/development/libraries/gstreamer/libav/default.nix

47 lines
844 B
Nix
Raw Normal View History

2019-10-02 18:04:06 +01:00
{ stdenv
, lib
, fetchurl
, meson
, ninja
, pkgconfig
, python3
, gst-plugins-base
, gettext
, libav
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.
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
pname = "gst-libav";
2019-12-05 17:27:17 +00:00
version = "1.16.2";
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";
2019-12-05 17:27:17 +00:00
sha256 = "1wpfilc98bad9nsv3y1qapxp35dvn2mvwvrmqwrsj58cf09gc967";
2013-12-23 15:36:37 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 13:39:30 +01:00
2019-10-02 18:04:06 +01:00
nativeBuildInputs = [
meson
ninja
gettext
pkgconfig
python3
];
2019-10-02 18:04:06 +01:00
buildInputs = [
gst-plugins-base
libav
];
2019-10-02 18:04:06 +01:00
meta = with lib; {
description = "FFmpeg/libav plugin for GStreamer";
homepage = "https://gstreamer.freedesktop.org";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
};
2013-12-23 15:36:37 +00:00
}