56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ stdenv, lib, fetchurl }:
|
|
|
|
let
|
|
|
|
common = { versionMajor, versionMinor, sha256 } @ args: stdenv.mkDerivation (rec {
|
|
name = "apache-tomcat-${version}";
|
|
version = "${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/tomcat/tomcat-${versionMajor}/v${version}/bin/${name}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
|
|
outputs = [ "out" "webapps" ];
|
|
installPhase =
|
|
''
|
|
mkdir $out
|
|
mv * $out
|
|
mkdir -p $webapps/webapps
|
|
mv $out/webapps $webapps/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://tomcat.apache.org/;
|
|
description = "An implementation of the Java Servlet and JavaServer Pages technologies";
|
|
platforms = with lib.platforms; all;
|
|
maintainers = with lib.maintainers; [ danbst ];
|
|
license = [ lib.licenses.asl20 ];
|
|
};
|
|
});
|
|
|
|
in {
|
|
tomcat7 = common {
|
|
versionMajor = "7";
|
|
versionMinor = "0.75";
|
|
sha256 = "0w5adsy4792qkf3ws46f539lrdbpz7lghy79s6b04c9yqaxjz6ni";
|
|
};
|
|
|
|
tomcat8 = common {
|
|
versionMajor = "8";
|
|
versionMinor = "0.41";
|
|
sha256 = "1mvnf6m29y3p40vvi9mgghrddlmgwcrcvfwrf9vbama78fsh8wm5";
|
|
};
|
|
|
|
tomcat85 = common {
|
|
versionMajor = "8";
|
|
versionMinor = "5.14";
|
|
sha256 = "0dls16lw7yak3s6cwwcccfg0qb5g8s36waxlg8wgjk8vc57h316w";
|
|
};
|
|
|
|
tomcatUnstable = common {
|
|
versionMajor = "9";
|
|
versionMinor = "0.0.M17";
|
|
sha256 = "1ilvka2062m7412bj2fsdwvfxbrjyj9qxcia40hhv22prvkxw3cg";
|
|
};
|
|
}
|