tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
jetty_11,jetty_12: init
Anthony Roussel
2 years ago
c7d414ef
2c94d267
+16
-3
4 changed files
expand all
collapse all
unified
split
pkgs
servers
http
jetty
11.x.nix
12.x.nix
common.nix
top-level
all-packages.nix
+4
pkgs/servers/http/jetty/11.x.nix
···
1
1
+
import ./common.nix {
2
2
+
version = "11.0.18";
3
3
+
hash = "sha256-HxtO2r6YWo6+MAYUgk7dNSPDqQZoyO9t/8NdI5pPkL4=";
4
4
+
}
+4
pkgs/servers/http/jetty/12.x.nix
···
1
1
+
import ./common.nix {
2
2
+
version = "12.0.3";
3
3
+
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
4
4
+
}
+5
-2
pkgs/servers/http/jetty/default.nix
pkgs/servers/http/jetty/common.nix
···
1
1
+
{ version, hash }:
2
2
+
1
3
{ lib, stdenv, fetchurl }:
2
4
3
5
stdenv.mkDerivation rec {
4
6
pname = "jetty";
5
5
-
version = "12.0.3";
7
7
+
8
8
+
inherit version;
6
9
7
10
src = fetchurl {
8
11
url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
9
9
-
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
12
12
+
inherit hash;
10
13
};
11
14
12
15
dontBuild = true;
+3
-1
pkgs/top-level/all-packages.nix
···
26523
26523
26524
26524
jboss_mysql_jdbc = callPackage ../servers/http/jboss/jdbc/mysql { };
26525
26525
26526
26526
-
jetty = callPackage ../servers/http/jetty { };
26526
26526
+
jetty = jetty_12;
26527
26527
+
jetty_12 = callPackage ../servers/http/jetty/12.x.nix { };
26528
26528
+
jetty_11 = callPackage ../servers/http/jetty/11.x.nix { };
26527
26529
26528
26530
jibri = callPackage ../servers/jibri { };
26529
26531