25 lines
662 B
Nix
25 lines
662 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jetty";
|
|
version = "9.4.37.v20210219";
|
|
src = fetchurl {
|
|
url = "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz";
|
|
sha256 = "sha256-Jyg0cQBnwYtcVJnr2uWwE/9yC3wq+CLTTGKtv3BsZs8=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
mv etc lib modules start.ini start.jar $out
|
|
'';
|
|
|
|
meta = {
|
|
description = "A Web server and javax.servlet container";
|
|
homepage = "https://www.eclipse.org/jetty/";
|
|
platforms = lib.platforms.all;
|
|
license = [ lib.licenses.asl20 lib.licenses.epl10 ];
|
|
};
|
|
}
|