Compare commits

...

3 Commits

4 changed files with 19 additions and 3 deletions

View File

@ -3,7 +3,7 @@
with pkgs;
mkShell {
buildInputs = [ dart flutter androidenv.androidPkgs_9_0.androidsdk jdk ];
buildInputs = [ flutter hover androidenv.androidPkgs_9_0.androidsdk jdk ];
ANDROID_HOME = "${androidenv.androidPkgs_9_0.androidsdk}/libexec/android-sdk";
ANDROID_AVD_HOME = (toString ./.) + "/.android/avd";

View File

@ -21,7 +21,9 @@ in mkShell {
mysqld --datadir="${data_dir}" --socket="${socket}" --skip-networking --skip-mysqlx &
sleep 1
mysql --socket="${socket}" -u root < ${sql_file}
if [ ! -d ${data_dir} ]; then
mysql --socket="${socket}" -u root < ${sql_file}
fi
alias mysql='mysql --socket="${socket}" -u root'
alias nuke='rm -rf ${data_dir}'

View File

@ -22,7 +22,10 @@ in mkShell {
pg_ctl start -o "--unix_socket_directories=${data_dir} --listen_addresses='''"
fi
psql -d postgres -f ${sql_file}
if [ ! -d ${data_dir} ]; then
psql -d postgres -f ${sql_file}
fi
alias psql='psql -d postgres'
alias nuke='rm -rf ${data_dir}'
'';

11
tensorflow-poetry.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [ python38 poetry ];
shellHook = ''
export LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH
unset SOURCE_DATE_EPOCH
'';
}