dtools: Fix rdmd test when building with newer phobos version which doesn't include std.stdiobase.d anymore.

This commit is contained in:
Thomas Mader 2017-08-28 17:00:45 +02:00
parent 8a2a3dad80
commit 930b01ab3d

View File

@ -17,6 +17,10 @@ stdenv.mkDerivation rec {
substituteInPlace posix.mak \
--replace gcc $CC
# To fix rdmd test with newer phobos
substituteInPlace rdmd.d \
--replace " std.stdiobase," ""
'';
nativeBuildInputs = [ dmd ];