jetty_11,jetty_12: init
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
import ./common.nix {
|
||||
version = "11.0.18";
|
||||
hash = "sha256-HxtO2r6YWo6+MAYUgk7dNSPDqQZoyO9t/8NdI5pPkL4=";
|
||||
}
|
||||
@@ -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;
|
||||
@@ -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 { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user