vivaldi-ffmpeg-codecs: 112.0.5615.49 -> 111306

This now explicitly follows the `update-ffmpeg` script, which changed to
using a snap instead of a .deb file downloaded from Launchpad.
This commit is contained in:
Falco Peijnenburg 2023-07-16 12:07:11 +02:00
parent f0e8c9e00d
commit 1b62507fd7

View File

@ -1,22 +1,24 @@
{ dpkg, fetchurl, lib, stdenv }:
{ squashfsTools, fetchurl, lib, stdenv }:
# This derivation roughly follows the update-ffmpeg script that ships with the official Vivaldi
# downloads at https://vivaldi.com/download/
stdenv.mkDerivation rec {
pname = "chromium-codecs-ffmpeg-extra";
version = "112.0.5615.49";
version = "111306";
src = fetchurl {
url = "https://launchpadlibrarian.net/660647727/${pname}_${version}-0ubuntu0.18.04.1_amd64.deb";
sha256 = "sha256-mHjvjRG+toRcsOMca+JPXNZPgyQROH2qtSpBPHLmt3s=";
url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_34.snap";
sha256 = "sha256-Dna9yFgP7JeQLAeZWvSZ+eSMX2yQbX2/+mX0QC22lYY=";
};
buildInputs = [ dpkg ];
buildInputs = [ squashfsTools ];
unpackPhase = ''
dpkg-deb -x $src .
unsquashfs -dest . $src
'';
installPhase = ''
install -vD usr/lib/chromium-browser/libffmpeg.so $out/lib/libffmpeg.so
install -vD chromium-ffmpeg-${version}/chromium-ffmpeg/libffmpeg.so $out/lib/libffmpeg.so
'';
meta = with lib; {
@ -24,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = "https://ffmpeg.org/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.lgpl21;
maintainers = with maintainers; [ betaboon cawilliamson lluchs ];
maintainers = with maintainers; [ betaboon cawilliamson lluchs fptje ];
platforms = [ "x86_64-linux" ];
};
}