mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
637d5dd00c
also renamed from tomcatUnstable to tomcat9
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.82";
|
|
sha256 = "0vb7c5i50ral4rr39ss95k7cxnzd7fs21zd7f97d1f3qslzwl69g";
|
|
};
|
|
|
|
tomcat8 = common {
|
|
versionMajor = "8";
|
|
versionMinor = "0.47";
|
|
sha256 = "0xv4v3i08rwzfmz7rkhglq5cbjgnfava8dw0i33vsp7dk162a4g4";
|
|
};
|
|
|
|
tomcat85 = common {
|
|
versionMajor = "8";
|
|
versionMinor = "5.23";
|
|
sha256 = "1qnww70x75c0qf2wn8mkpz5lszggjnh78dpb4chyw2fnbm3wxain";
|
|
};
|
|
|
|
tomcat9 = common {
|
|
versionMajor = "9";
|
|
versionMinor = "0.2";
|
|
sha256 = "0aaykzi0b2xsdmjp60ihcjzh1m95p0a79kn5l2v7vgbkyg449638";
|
|
};
|
|
}
|