2022-01-25 03:21:06 +00:00
|
|
|
{ callPackage
|
|
|
|
# Darwin frameworks
|
|
|
|
, Cocoa, CoreMedia, VideoToolbox
|
|
|
|
, ...
|
|
|
|
}@args:
|
|
|
|
|
|
|
|
callPackage ./generic.nix (rec {
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "5.1";
|
2022-01-25 03:21:06 +00:00
|
|
|
branch = version;
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-MrVvsBzpDUUpWK4l6RyVZKv0ntVFPBJ77CPGPlMKqPo=";
|
2022-01-25 03:21:06 +00:00
|
|
|
darwinFrameworks = [ Cocoa CoreMedia VideoToolbox ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
# Newly introduced IPFS support in ffmpeg 5.1 relies on untrusted third
|
|
|
|
# party services, leading to consent and privacy issues. See upstream
|
|
|
|
# discussion for more information:
|
|
|
|
# https://ffmpeg.org/pipermail/ffmpeg-devel/2022-August/299924.html
|
|
|
|
patches = [ ./ipfs-remove-default-gateway.patch ];
|
2022-01-25 03:21:06 +00:00
|
|
|
} // args)
|