Joseph Hanson
3a1eb9d320
Some checks failed
Build / nix-build (native-aarch64, varda) (push) Successful in 2m31s
Build / nix-build (native-x86_64, gandalf) (push) Has been cancelled
Build / nix-build (native-x86_64, telchar) (push) Has been cancelled
Build / nix-build (native-x86_64, telperion) (push) Has been cancelled
Build / Nix Build Successful (push) Has been cancelled
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ 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 = "115541";
|
|
|
|
src = fetchurl {
|
|
url = "https://api.snapcraft.io/api/v1/snaps/download/XXzVIXswXKHqlUATPqGCj2w2l7BxosS8_41.snap";
|
|
hash = "sha256-a1peHhku+OaGvPyChvLdh6/7zT+v8OHNwt60QUq7VvU=";
|
|
};
|
|
|
|
buildInputs = [ squashfsTools ];
|
|
|
|
unpackPhase = ''
|
|
unsquashfs -dest . $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -vD chromium-ffmpeg-${version}/chromium-ffmpeg/libffmpeg.so $out/lib/libffmpeg.so
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Additional support for proprietary codecs for Vivaldi";
|
|
homepage = "https://ffmpeg.org/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ betaboon cawilliamson fptje ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|