From 383b6ee4efb30834611e94ab754d538a26b4c21e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 15 Jan 2024 01:08:40 +0100 Subject: [PATCH] vlc: use current ffmpeg, update meta.homepage to https I am trying to reduce the variance of ffmpegs on my system and vlc seems to no longer require an older ffmpeg version. --- pkgs/applications/video/vlc/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix index 8f2358fdd6ab..afa948b00bb5 100644 --- a/pkgs/applications/video/vlc/default.nix +++ b/pkgs/applications/video/vlc/default.nix @@ -11,7 +11,7 @@ , avahi , dbus , faad2 -, ffmpeg_4 +, ffmpeg , flac , fluidsynth , freefont_ttf @@ -105,7 +105,7 @@ stdenv.mkDerivation (finalAttrs: { version = "3.0.20"; src = fetchurl { - url = "http://get.videolan.org/vlc/${finalAttrs.version}/vlc-${finalAttrs.version}.tar.xz"; + url = "https://get.videolan.org/vlc/${finalAttrs.version}/vlc-${finalAttrs.version}.tar.xz"; hash = "sha256-rccoW00nIc3fQOtScMraKqoQozTLVG/VWgY1NEe6KbU="; }; @@ -136,7 +136,7 @@ stdenv.mkDerivation (finalAttrs: { avahi dbus faad2 - ffmpeg_4 + ffmpeg flac fluidsynth fribidi @@ -287,7 +287,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Cross-platform media player and streaming server"; - homepage = "http://www.videolan.org/vlc/"; + homepage = "https://www.videolan.org/vlc/"; license = lib.licenses.lgpl21Plus; maintainers = with lib.maintainers; [ AndersonTorres ]; platforms = lib.platforms.linux;