10cbebe3df
https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/89355585366:/Changelog /cc #42882: it certainly seems to fix some security issues, but I'm not sure about mapping to particular CVE numbers; perhaps it will appear on http://ffmpeg.org/security.html
13 lines
286 B
Nix
13 lines
286 B
Nix
{ stdenv, callPackage, fetchpatch
|
|
# Darwin frameworks
|
|
, Cocoa, CoreMedia
|
|
, ...
|
|
}@args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "${branch}";
|
|
branch = "3.4.3";
|
|
sha256 = "0s2p2bcrywlya4wjlyzi1382vngkiijjvjr6ms64xww5jplwmhmk";
|
|
darwinFrameworks = [ Cocoa CoreMedia ];
|
|
})
|