jetty: 9.4.37.v20210219 -> 9.4.39.v20210325

Closes #120392
This commit is contained in:
Emmanuel Rosa 2021-04-27 15:50:03 +07:00
parent 92c77733ac
commit aeb90f9956
1 changed files with 6 additions and 5 deletions

View File

@ -2,10 +2,10 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "jetty"; pname = "jetty";
version = "9.4.37.v20210219"; version = "9.4.39.v20210325";
src = fetchurl { src = fetchurl {
url = "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz"; url = "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz";
sha256 = "sha256-Jyg0cQBnwYtcVJnr2uWwE/9yC3wq+CLTTGKtv3BsZs8="; sha256 = "0mn3ranh599w946cnykj7sbkj4w7ddpdhly7njmalsgabfbk8qv5";
}; };
dontBuild = true; dontBuild = true;
@ -15,10 +15,11 @@ stdenv.mkDerivation rec {
mv etc lib modules start.ini start.jar $out mv etc lib modules start.ini start.jar $out
''; '';
meta = { meta = with lib; {
description = "A Web server and javax.servlet container"; description = "A Web server and javax.servlet container";
homepage = "https://www.eclipse.org/jetty/"; homepage = "https://www.eclipse.org/jetty/";
platforms = lib.platforms.all; platforms = platforms.all;
license = [ lib.licenses.asl20 lib.licenses.epl10 ]; license = with licenses; [ asl20 epl10 ];
maintainers = with maintainers; [ emmanuelrosa ];
}; };
} }