2021-01-14 23:07:56 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2004-08-30 11:22:14 -07:00
|
|
|
|
2016-06-10 00:59:59 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "jetty";
|
2021-07-09 18:40:14 -07:00
|
|
|
version = "9.4.43.v20210629";
|
2008-02-18 06:26:03 -08:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz";
|
2021-07-09 18:40:14 -07:00
|
|
|
sha256 = "sha256-AfrmVLCZMuRGAZqoWeevbgXifbreErVM17rjJJ/HI9k=";
|
2016-06-10 00:59:59 -07:00
|
|
|
};
|
|
|
|
|
2021-01-31 00:46:16 -08:00
|
|
|
dontBuild = true;
|
2016-06-10 00:59:59 -07:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
2018-04-12 07:27:01 -07:00
|
|
|
mv etc lib modules start.ini start.jar $out
|
2016-06-10 00:59:59 -07:00
|
|
|
'';
|
|
|
|
|
2021-04-27 01:50:03 -07:00
|
|
|
meta = with lib; {
|
2016-06-10 00:59:59 -07:00
|
|
|
description = "A Web server and javax.servlet container";
|
2019-11-30 13:03:40 -08:00
|
|
|
homepage = "https://www.eclipse.org/jetty/";
|
2021-04-27 01:50:03 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = with licenses; [ asl20 epl10 ];
|
|
|
|
maintainers = with maintainers; [ emmanuelrosa ];
|
2008-02-18 06:26:03 -08:00
|
|
|
};
|
2004-08-30 11:22:14 -07:00
|
|
|
}
|