tomcat6: drop, no longer supported.

This commit is contained in:
Graham Christensen 2017-02-17 22:24:33 -05:00
parent f308722a00
commit 6fc38401a2
No known key found for this signature in database
GPG key ID: 06121D366FE9435C
2 changed files with 2 additions and 9 deletions

View file

@ -30,13 +30,6 @@ let
});
in {
tomcat6 = common {
versionMajor = "6";
versionMinor = "0.48";
sha256 = "1w4jf28g8p25fmijixw6b02iqlagy2rvr57y3n90hvz341kb0bbc";
};
tomcat7 = common {
versionMajor = "7";
versionMinor = "0.73";

View file

@ -1,10 +1,10 @@
{ stdenv, tomcat6, mysql_jdbc }:
{ stdenv, mysql_jdbc }:
stdenv.mkDerivation {
name = "tomcat-mysql-jdbc";
builder = ./builder.sh;
buildInputs = [ mysql_jdbc ];
inherit mysql_jdbc;
meta = {