searx: patch to fix a crash
If the `default_doi_resolver` and `use_default_settings` are used together searx crashes. (cherry picked from commit 2a90b3329b18fadf35bf79966cd2330d83547b7e)
This commit is contained in:
parent
59979f8746
commit
459ad47968
@ -1,4 +1,4 @@
|
||||
{ lib, nixosTests, python3, python3Packages, fetchFromGitHub }:
|
||||
{ lib, nixosTests, python3, python3Packages, fetchFromGitHub, fetchpatch }:
|
||||
|
||||
with python3Packages;
|
||||
|
||||
@ -14,6 +14,14 @@ toPythonModule (buildPythonApplication rec {
|
||||
sha256 = "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix a crash, remove with the next update
|
||||
(fetchpatch {
|
||||
url = "https://github.com/searx/searx/commit/9c10b150963babb7f0b52081693a42b2e61eede9.patch";
|
||||
sha256 = "0svp8799628wja2hq59da6rxqi99am8p6hb8y27ciwzsjz0wwba7";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
sed -i 's/==.*$//' requirements.txt
|
||||
'';
|
||||
|
Loading…
x
Reference in New Issue
Block a user