3
0
Fork 0
forked from mirrors/nixpkgs

elasticsearchPlugins.elasticsearch_http_basic: remove

Deprecated by upstream, search_guard was recommended instead.
This commit is contained in:
Jörg Thalheim 2018-08-03 09:51:40 +01:00
parent fa26b59091
commit 5d3b75ab5d

View file

@ -38,25 +38,6 @@ in {
};
};
elasticsearch_http_basic = stdenv.mkDerivation rec {
name = "elasticsearch-http-basic-${version}";
version = "1.5.0";
src = fetchurl {
url = "https://github.com/Asquera/elasticsearch-http-basic/releases/download/v${version}/${name}.jar";
sha256 = "0fif6sbn2ich39lrgm039y9d5bxkylx9pvly04wss8rdhspvdskb";
};
phases = ["installPhase"];
installPhase = "install -D $src $out/plugins/http-basic/${name}.jar";
meta = {
homepage = https://github.com/Asquera/elasticsearch-http-basic;
description = "HTTP Basic Authentication for Elasticsearch";
license = licenses.mit;
platforms = elasticsearch.meta.platforms;
};
};
elasticsearch_kopf = esPlugin rec {
name = "elasticsearch-kopf-${version}";