nixpkgs/pkgs/servers/http/tomcat/default.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

2016-09-08 08:47:04 +00:00
{ 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 = {
2016-09-08 08:47:04 +00:00
homepage = https://tomcat.apache.org/;
description = "An implementation of the Java Servlet and JavaServer Pages technologies";
2016-09-08 08:47:04 +00:00
platforms = with lib.platforms; all;
maintainers = with lib.maintainers; [ danbst ];
license = [ lib.licenses.asl20 ];
};
});
in {
tomcat7 = common {
versionMajor = "7";
2017-02-18 03:28:01 +00:00
versionMinor = "0.75";
sha256 = "0w5adsy4792qkf3ws46f539lrdbpz7lghy79s6b04c9yqaxjz6ni";
};
tomcat8 = common {
versionMajor = "8";
2017-02-18 03:28:34 +00:00
versionMinor = "0.41";
sha256 = "1mvnf6m29y3p40vvi9mgghrddlmgwcrcvfwrf9vbama78fsh8wm5";
};
tomcat85 = common {
versionMajor = "8";
2017-02-18 03:29:24 +00:00
versionMinor = "5.11";
sha256 = "0i1xvgpj4l4agc8vxrnfm127w4mc33pyl8963pwpklqpdk4shcjn";
};
tomcatUnstable = common {
versionMajor = "9";
versionMinor = "0.0.M15";
sha256 = "1spbq5vh2dplp83ki3fbbwl0klxq36s4rwkpcjdnwjxjymg9k432";
};
}