nixpkgs/pkgs/servers/http/jetty/default.nix

25 lines
662 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ 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/";
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.all;
2021-01-15 13:21:58 +00:00
license = [ lib.licenses.asl20 lib.licenses.epl10 ];
};
}