2021-01-15 07:07:56 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2004-08-30 18:22:14 +00:00
|
|
|
|
2016-06-10 07:59:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "jetty";
|
2023-06-04 13:20:44 +00:00
|
|
|
version = "11.0.15";
|
2008-02-18 14:26:03 +00:00
|
|
|
src = fetchurl {
|
2022-03-10 16:13:51 +00:00
|
|
|
url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
|
2023-06-04 13:20:44 +00:00
|
|
|
sha256 = "sha256-bDg3CYPAGryqRv/gcPdeZKucXx6YTkkNd0Cu1+zIjto=";
|
2016-06-10 07:59:59 +00:00
|
|
|
};
|
|
|
|
|
2021-01-31 08:46:16 +00:00
|
|
|
dontBuild = true;
|
2016-06-10 07:59:59 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
2022-03-10 16:13:51 +00:00
|
|
|
mv etc lib modules start.jar $out
|
2016-06-10 07:59:59 +00:00
|
|
|
'';
|
|
|
|
|
2021-04-27 08:50:03 +00:00
|
|
|
meta = with lib; {
|
2016-06-10 07:59:59 +00:00
|
|
|
description = "A Web server and javax.servlet container";
|
2019-11-30 21:03:40 +00:00
|
|
|
homepage = "https://www.eclipse.org/jetty/";
|
2021-04-27 08:50:03 +00:00
|
|
|
platforms = platforms.all;
|
2022-06-02 13:38:41 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2021-04-27 08:50:03 +00:00
|
|
|
license = with licenses; [ asl20 epl10 ];
|
|
|
|
maintainers = with maintainers; [ emmanuelrosa ];
|
2008-02-18 14:26:03 +00:00
|
|
|
};
|
2004-08-30 18:22:14 +00:00
|
|
|
}
|