searx: cleanup, remove python name prefix

+4 -3
+4 -3
pkgs/servers/web-apps/searx/default.nix
··· 1 - { stdenv, pythonPackages, fetchFromGitHub }: 1 + { lib, pythonPackages, fetchFromGitHub }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 name = "searx-${version}"; 5 5 version = "0.12.0"; 6 + namePrefix = ""; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "asciimoo"; ··· 25 26 pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks 26 27 ]; 27 28 28 - meta = with stdenv.lib; { 29 + meta = with lib; { 29 30 homepage = https://github.com/asciimoo/searx; 30 31 description = "A privacy-respecting, hackable metasearch engine"; 31 32 license = licenses.agpl3Plus; 32 33 maintainers = with maintainers; [ matejc fpletz profpatsch ]; 33 34 }; 34 - } 35 + }