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