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
···
0
0
0
0
···
1
+
import ./common.nix {
2
+
version = "11.0.18";
3
+
hash = "sha256-HxtO2r6YWo6+MAYUgk7dNSPDqQZoyO9t/8NdI5pPkL4=";
4
+
}
+4
pkgs/servers/http/jetty/12.x.nix
···
0
0
0
0
···
1
+
import ./common.nix {
2
+
version = "12.0.3";
3
+
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
4
+
}
+5
-2
pkgs/servers/http/jetty/default.nix
pkgs/servers/http/jetty/common.nix
···
0
0
1
{ lib, stdenv, fetchurl }:
2
3
stdenv.mkDerivation rec {
4
pname = "jetty";
5
-
version = "12.0.3";
0
6
7
src = fetchurl {
8
url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
9
-
hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs=";
10
};
11
12
dontBuild = true;
···
1
+
{ version, hash }:
2
+
3
{ lib, stdenv, fetchurl }:
4
5
stdenv.mkDerivation rec {
6
pname = "jetty";
7
+
8
+
inherit version;
9
10
src = fetchurl {
11
url = "mirror://maven/org/eclipse/jetty/jetty-home/${version}/jetty-home-${version}.tar.gz";
12
+
inherit hash;
13
};
14
15
dontBuild = true;
+3
-1
pkgs/top-level/all-packages.nix
···
26523
26524
jboss_mysql_jdbc = callPackage ../servers/http/jboss/jdbc/mysql { };
26525
26526
-
jetty = callPackage ../servers/http/jetty { };
0
0
26527
26528
jibri = callPackage ../servers/jibri { };
26529
···
26523
26524
jboss_mysql_jdbc = callPackage ../servers/http/jboss/jdbc/mysql { };
26525
26526
+
jetty = jetty_12;
26527
+
jetty_12 = callPackage ../servers/http/jetty/12.x.nix { };
26528
+
jetty_11 = callPackage ../servers/http/jetty/11.x.nix { };
26529
26530
jibri = callPackage ../servers/jibri { };
26531