Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@
},
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Development",
Expand Down
32 changes: 32 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
nodePackages.node-gyp
python313
python313Packages.setuptools
python313Packages.wheel
python313Packages.distutils

# Document processing libraries
python313Packages.pypdf2
python313Packages.python-docx
python313Packages.python-pptx
python313Packages.pandas
python313Packages.openpyxl
python313Packages.xlrd
python313Packages.striprtf
python313Packages.beautifulsoup4

# Build tools
gcc
cmake
pkg-config
];

shellHook = ''
# make sure node-gyp/npm use the shell python
export npm_config_python=${pkgs.python313}/bin/python3
'';
}