parent
92c77733ac
commit
aeb90f9956
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue