file: fix for cross

For whatever reason "selfNativeBuildInput = true"
doesn't seeem to do the trick here?
(reasons may include "it's not intended to solve this problem" ;))
This commit is contained in:
Will Dietz 2018-01-23 11:47:10 -06:00
parent 162398f907
commit 2060f547df

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, zlib }:
{ stdenv, fetchurl, file, zlib }:
stdenv.mkDerivation rec {
name = "file-${version}";
@ -12,6 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
};
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
buildInputs = [ zlib ];
doCheck = true;