3 { lib, stdenvNoCC, fetchurl, gitUpdater }:
5 stdenvNoCC.mkDerivation rec {
11 url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
19 mv etc lib modules start.jar $out
22 passthru.updateScript = gitUpdater {
23 url = "https://github.com/jetty/jetty.project.git";
24 allowedVersions = "^${lib.versions.major version}\\.";
25 ignoredVersions = "(alpha|beta).*";
26 rev-prefix = "jetty-";
30 changelog = "https://github.com/jetty/jetty.project/releases/tag/jetty-${version}";
31 description = "Web server and javax.servlet container";
32 homepage = "https://jetty.org/";
33 platforms = platforms.all;
34 sourceProvenance = with sourceTypes; [ binaryBytecode ];
35 license = with licenses; [ asl20 epl10 ];
36 maintainers = with maintainers; [ emmanuelrosa anthonyroussel ];