mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
![Christian Albrecht](/assets/img/avatar_default.png)
Vulnerabilities: - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1920 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1921 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1922 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1923 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1924 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-1925 - 7.8 https://nvd.nist.gov/vuln/detail/CVE-2022-2122 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1224 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1225 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1226
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, gstreamer
|
|
, gst-plugins-base
|
|
, gettext
|
|
, libav
|
|
}:
|
|
|
|
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
|
|
# https://gstreamer.freedesktop.org/releases/1.6/ for more info.
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gst-libav";
|
|
version = "1.20.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-P+3RBWD836obZGLL95o4xOe1fX85A1k5P8DO9tvyff4=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
gettext
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
gstreamer
|
|
gst-plugins-base
|
|
libav
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
scripts/extract-release-date-from-doap-file.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "FFmpeg/libav plugin for GStreamer";
|
|
homepage = "https://gstreamer.freedesktop.org";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|