Add Tensorflow workarounds to shell.nix

This commit is contained in:
2021-05-06 00:12:24 +02:00
parent fba5578adc
commit 223bf16a8a

View File

@@ -2,4 +2,10 @@
with pkgs; with pkgs;
mkShell { buildInputs = [ python38 poetry ]; } mkShell {
buildInputs = [ python38 poetry ];
shellHook = ''
export LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH
unset SOURCE_DATE_EPOCH
'';
}