Merge 887f343bd6a5948cc162f6f65326d83ea95a898b into d76f030cb3a67be54e3480844d70c066b388c496
This commit is contained in:
commit
41c0963c00
23
shell.nix
Normal file
23
shell.nix
Normal 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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user