searx: cleanup, remove python name prefix

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