2010-10-05 11:39:12 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2008-01-30 09:41:33 +00:00
|
|
|
|
tomcat6: update from 6.0.32 to 6.0.37, potentially fixes CVE-2012-0022, CVE-2012-2733, CVE-2012-3544, CVE-2012-3546, CVE-2012-4431, CVE-2012-4534, CVE-2012-5568, CVE-2012-5885, CVE-2012-5886, CVE-2012-5887, CVE-2013-2067
2013-12-04 03:07:47 +00:00
|
|
|
let version = "6.0.37"; in
|
2008-01-30 09:41:33 +00:00
|
|
|
|
2010-10-05 11:39:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "apache-tomcat-${version}";
|
2008-01-30 09:41:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-10-05 11:39:12 +01:00
|
|
|
url = "mirror://apache/tomcat/tomcat-6/v${version}/bin/${name}.tar.gz";
|
tomcat6: update from 6.0.32 to 6.0.37, potentially fixes CVE-2012-0022, CVE-2012-2733, CVE-2012-3544, CVE-2012-3546, CVE-2012-4431, CVE-2012-4534, CVE-2012-5568, CVE-2012-5885, CVE-2012-5886, CVE-2012-5887, CVE-2013-2067
2013-12-04 03:07:47 +00:00
|
|
|
sha256 = "000v63amhbyp8nkw3a4pff1vm4nxri5n9j7rknhnqaxzab3sp49y";
|
2008-01-30 09:41:33 +00:00
|
|
|
};
|
|
|
|
|
2010-10-05 11:39:12 +01:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir $out
|
|
|
|
mv * $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://tomcat.apache.org/;
|
|
|
|
description = "An implementation of the Java Servlet and JavaServer Pages technologies";
|
|
|
|
};
|
2008-01-30 09:41:33 +00:00
|
|
|
}
|