1
Fork 0
This commit is contained in:
Motiejus Jakštys 2024-01-13 19:30:41 +02:00
parent c2c980e31d
commit a27d0cdc96
1 changed files with 3 additions and 2 deletions

View File

@ -115,10 +115,11 @@
}; };
devShells.default = pkgs.mkShellNoCC { devShells.default = pkgs.mkShellNoCC {
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; packages = [pkgs.python3Packages.django-debug-toolbar] ++ runtimeDeps ++ buildDeps;
GEOIP_PATH = "${geoip}"; GEOIP_PATH = "${geoip}";
E11SYNC_DEBUG = "1"; E11SYNC_DEBUG = "1";
packages = [pkgs.python3Packages.django-debug-toolbar] ++ runtimeDeps ++ buildDeps; LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
}; };
formatter = pkgs.alejandra; formatter = pkgs.alejandra;