Merge 887f343bd6a5948cc162f6f65326d83ea95a898b into d76f030cb3a67be54e3480844d70c066b388c496

This commit is contained in:
Cat 2025-05-09 05:13:55 +00:00 committed by GitHub
commit 41c0963c00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

23
shell.nix Normal file
View File

@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
/*
nix shell for development usage
1. run `nix-shell`
2. run `make run` (or any other make scripts)
Done!
*/
(pkgs.buildFHSEnv {
name = "searxng";
multiPkgs = pkgs: (with pkgs; [
bashInteractive
wget
gnumake
git
python3
geckodriver
shellcheck
]);
runScript = "bash";
}).env