searx: cleanup, remove python name prefix
This commit is contained in:
parent
30d76b8ccd
commit
1ed786292b
|
@ -1,8 +1,9 @@
|
||||||
{ stdenv, pythonPackages, fetchFromGitHub }:
|
{ lib, pythonPackages, fetchFromGitHub }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "searx-${version}";
|
name = "searx-${version}";
|
||||||
version = "0.12.0";
|
version = "0.12.0";
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "asciimoo";
|
owner = "asciimoo";
|
||||||
|
@ -25,10 +26,10 @@ pythonPackages.buildPythonApplication rec {
|
||||||
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
|
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
homepage = https://github.com/asciimoo/searx;
|
homepage = https://github.com/asciimoo/searx;
|
||||||
description = "A privacy-respecting, hackable metasearch engine";
|
description = "A privacy-respecting, hackable metasearch engine";
|
||||||
license = licenses.agpl3Plus;
|
license = licenses.agpl3Plus;
|
||||||
maintainers = with maintainers; [ matejc fpletz profpatsch ];
|
maintainers = with maintainers; [ matejc fpletz profpatsch ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue