Remove Varnish 2.1.5

Last release was in 2010, has vulns CVE-2013-4484, cc @garbas
This commit is contained in:
Domen Kožar 2015-02-04 11:53:22 +01:00
parent 98a480363c
commit cb6706c22f
2 changed files with 0 additions and 23 deletions

View file

@ -1,21 +0,0 @@
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig }:
stdenv.mkDerivation rec {
version = "2.1.5";
name = "varnish-${version}";
src = fetchurl {
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
sha256 = "10zgwn482gfmfb7n6xwi7p841bs3j58jnk55wg83b85d2jz4k01d";
};
buildInputs = [ pcre libxslt groff ncurses pkgconfig ];
meta = {
description = "Web application accelerator also known as a caching HTTP reverse proxy";
homepage = "https://www.varnish-cache.org";
license = stdenv.lib.licenses.bsd2;
maintainers = [ stdenv.lib.maintainers.garbas ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -2881,8 +2881,6 @@ let
varnish = callPackage ../servers/varnish { };
varnish2 = callPackage ../servers/varnish/2.1.nix { };
venus = callPackage ../tools/misc/venus {
python = python27;
};