This commit is contained in:
Cat 2025-02-09 18:11:55 +08:00 committed by GitHub
commit 897e781032
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