biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / jetty / common.nix
blob7c35430e23c19aec727de3d62edef25c66aa21ca
1 { version, hash }:
3 { lib, stdenvNoCC, fetchurl }:
5 stdenvNoCC.mkDerivation rec {
6   pname = "jetty";
8   inherit version;
10   src = fetchurl {
11     url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
12     inherit hash;
13   };
15   dontBuild = true;
17   installPhase = ''
18     mkdir -p $out
19     mv etc lib modules start.jar $out
20   '';
22   meta = with lib; {
23     description = "A Web server and javax.servlet container";
24     homepage = "https://eclipse.dev/jetty/";
25     platforms = platforms.all;
26     sourceProvenance = with sourceTypes; [ binaryBytecode ];
27     license = with licenses; [ asl20 epl10 ];
28     maintainers = with maintainers; [ emmanuelrosa anthonyroussel ];
29   };