ffmpeg: 3.2.4 -> 3.3

This commit is contained in:
Cray Elliott
2017-04-22 18:48:06 -07:00
parent 5a9850cedd
commit 7172556e8d
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{ stdenv, callPackage
# Darwin frameworks
, Cocoa, CoreMedia
, ...
}@args:
callPackage ./generic.nix (args // rec {
version = "${branch}";
branch = "3.3";
sha256 = "1p3brx0qa3i3569zlmcmpbxf17q73nrmbx2vp39s8h77r53qdq11";
darwinFrameworks = [ Cocoa CoreMedia ];
patches = stdenv.lib.optional stdenv.isDarwin ./sdk_detection.patch;
})