From a9b4dd348bc0f439c4f6b0a1e01074112bc7ab52 Mon Sep 17 00:00:00 2001 From: Denperidge Date: Thu, 9 Jan 2025 20:16:45 +0100 Subject: [PATCH] [feat] Added shell.nix --- shell.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..d43047b9c --- /dev/null +++ b/shell.nix @@ -0,0 +1,23 @@ +{ pkgs ? import {} }: + +/* +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; [ + bash + wget + gnumake + git + python3 + geckodriver + shellcheck + ]); + runScript = "bash"; +}).env +