jetty_11,jetty_12: init

This commit is contained in:
Anthony Roussel
2023-11-15 15:14:25 +01:00
parent 2c94d267c2
commit c7d414ef38
4 changed files with 16 additions and 3 deletions
+4
View File
@@ -0,0 +1,4 @@
import ./common.nix {
version = "11.0.18";
hash = "sha256-HxtO2r6YWo6+MAYUgk7dNSPDqQZoyO9t/8NdI5pPkL4=";
}
+4
View File
@@ -0,0 +1,4 @@
import ./common.nix {
version = "12.0.3";
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
}
@@ -1,12 +1,15 @@
{ version, hash }:
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "jetty";
version = "12.0.3";
inherit version;
src = fetchurl {
url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
inherit hash;
};
dontBuild = true;
+3 -1
View File
@@ -26523,7 +26523,9 @@ with pkgs;
jboss_mysql_jdbc = callPackage ../servers/http/jboss/jdbc/mysql { };
jetty = callPackage ../servers/http/jetty { };
jetty = jetty_12;
jetty_12 = callPackage ../servers/http/jetty/12.x.nix { };
jetty_11 = callPackage ../servers/http/jetty/11.x.nix { };
jibri = callPackage ../servers/jibri { };