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