searx: cleanup, remove python name prefix

This commit is contained in:
Franz Pletz 2017-08-09 19:38:59 +02:00
parent 30d76b8ccd
commit 1ed786292b
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,8 +1,9 @@
{ stdenv, pythonPackages, fetchFromGitHub }:
{ lib, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
name = "searx-${version}";
version = "0.12.0";
namePrefix = "";
src = fetchFromGitHub {
owner = "asciimoo";
@ -25,10 +26,10 @@ pythonPackages.buildPythonApplication rec {
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
];
meta = with stdenv.lib; {
meta = with lib; {
homepage = https://github.com/asciimoo/searx;
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc fpletz profpatsch ];
};
}
}