about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2024-01-15 01:08:40 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-01-15 11:24:40 +0100
commit383b6ee4efb30834611e94ab754d538a26b4c21e (patch)
tree99a58b0ec76074b926393656845c7e4fd42e85aa
parent500129c8b2739e99e05d56c6757bb6d176c0ca1b (diff)
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.
-rw-r--r--pkgs/applications/video/vlc/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix
index 8f2358fdd6abb..afa948b00bb58 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;