2048-in-terminal: fix on musl

This commit is contained in:
Will Dietz 2017-08-13 21:29:17 -05:00
parent f29bbd779c
commit bd23fc77d3

View file

@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ];
prePatch = ''
sed -i '1i#include <fcntl.h>\n' save.c
'';
enableParallelBuilding = true;
preInstall = ''