1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

searx: make package friendly towards nginx/uWSGI

- Link the /static directory to make it easier to serve
- Export searx module for use in uWSGI (just import the module)
This commit is contained in:
rnhmjoj 2020-11-04 19:17:34 +01:00
parent b7ca2d1448
commit 92d55d57eb
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -1,8 +1,8 @@
{ lib, python3Packages, fetchFromGitHub, fetchpatch }:
{ lib, python3, python3Packages, fetchFromGitHub, fetchpatch }:
with python3Packages;
buildPythonApplication rec {
toPythonModule (buildPythonApplication rec {
pname = "searx";
version = "0.17.0";
@ -34,10 +34,16 @@ buildPythonApplication rec {
rm tests/test_robot.py # A variable that is imported is commented out
'';
postInstall = ''
# Create a symlink for easier access to static data
mkdir -p $out/share
ln -s ../${python3.sitePackages}/searx/static $out/share/
'';
meta = with lib; {
homepage = "https://github.com/asciimoo/searx";
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc fpletz globin danielfullmer ];
};
}
})