This commit is contained in:
Cat 2025-01-14 15:56:35 +00:00 committed by GitHub
commit b3c17b5220
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