This commit is contained in:
hhh
2025-01-04 16:58:08 +02:00
commit a759cb9721
5 changed files with 158 additions and 0 deletions

21
replit.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs }: {
deps = [
pkgs.strace
pkgs.python310Full
pkgs.python310Packages.pip.out
pkgs.replitPackages.prybar-python310
pkgs.replitPackages.stderred
];
env = {
PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.stdenv.cc.cc.lib
pkgs.zlib
pkgs.glib
pkgs.xorg.libX11
];
PYTHONBIN = "${pkgs.python310Full}/bin/python3.10";
LANG = "en_US.UTF-8";
STDERREDBIN = "${pkgs.replitPackages.stderred}/bin/stderred";
PRYBAR_PYTHON_BIN = "${pkgs.replitPackages.prybar-python310}/bin/prybar-python310";
};
}