darwin: ffmpeg: add needed inputs

This commit is contained in:
Asko Soukka
2015-10-29 15:15:42 +02:00
committed by Jude Taylor
parent 75aadaeef7
commit aa12640cb9
2 changed files with 19 additions and 6 deletions

View File

@@ -10,6 +10,8 @@
, debugDeveloper ? false
, optimizationsDeveloper ? true
, extraWarningsDeveloper ? false
# Darwin frameworks
, Cocoa
# Inherit generics
, branch, sha256, version, ...
}:
@@ -141,7 +143,8 @@ stdenv.mkDerivation rec {
] ++ optional openglSupport mesa
++ optionals (!isDarwin) [ libvpx libpulseaudio ] # Need to be fixed on Darwin
++ optional (isLinux || isFreeBSD) libva
++ optional isLinux alsaLib;
++ optional isLinux alsaLib
++ optionals isDarwin [ Cocoa ];
enableParallelBuilding = true;