libowfat: mark cross as broken (#393933)

authored by Arne Keller and committed by GitHub 190d40df a03f3687

+6 -1
+6 -1
pkgs/by-name/li/libowfat/package.nix
··· 26 26 make headers 27 27 ''; 28 28 29 - makeFlags = [ "prefix=$(out)" ]; 29 + makeFlags = [ 30 + "prefix=$(out)" 31 + "CC=${stdenv.cc.targetPrefix}cc" 32 + ]; 30 33 enableParallelBuilding = true; 31 34 32 35 meta = with lib; { ··· 34 37 homepage = "https://www.fefe.de/libowfat/"; 35 38 license = licenses.gpl2; 36 39 platforms = platforms.linux; 40 + # build tool "json" is built for the host platform 41 + broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; 37 42 }; 38 43 }