ffmpeg: fix cross compile eval

This commit is contained in:
Will Dietz 2018-01-05 18:31:34 -06:00
parent 1fafe29a6a
commit 22e0a3c1b8

View File

@ -175,7 +175,7 @@ stdenv.mkDerivation rec {
configureFlags = configureFlags ++ [
"--cross-prefix=${stdenv.cc.targetPrefix}"
"--enable-cross-compile"
"--target_os=${hostPlatform.parsed.kernel}"
"--target_os=${hostPlatform.parsed.kernel.name}"
"--arch=${hostPlatform.arch}"
];
};