omxplayer: Don't use stdenv.cross

This commit is contained in:
John Ericson 2017-06-26 18:47:43 -04:00
parent ffa535a0cc
commit 9c163cebdd

View File

@ -1,4 +1,7 @@
{ stdenv, fetchurl, raspberrypifw, pcre, boost, freetype, zlib }: { stdenv, fetchurl
, raspberrypifw, pcre, boost, freetype, zlib
, hostPlatform
}:
let let
ffmpeg = stdenv.mkDerivation rec { ffmpeg = stdenv.mkDerivation rec {
@ -46,10 +49,10 @@ let
crossAttrs = { crossAttrs = {
configurePlatforms = []; configurePlatforms = [];
configureFlags = configureFlags ++ [ configureFlags = configureFlags ++ [
"--cross-prefix=${stdenv.cross.config}-" "--cross-prefix=${stdenv.cc.prefix}"
"--enable-cross-compile" "--enable-cross-compile"
"--target_os=linux" "--target_os=linux"
"--arch=${stdenv.cross.arch}" "--arch=${hostPlatform.arch}"
]; ];
}; };