dodanie shella dla nix

This commit is contained in:
installer
2025-04-21 01:20:00 +02:00
parent 65f693b8e1
commit d211f243ab

15
shell.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
bun
nodejs
sqlite
python313
python313Packages.distutils
];
shellHook = ''
export LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH
'';
}