about summary refs log tree commit diff
path: root/pkgs/servers/http/apache-modules/mod_jk/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/http/apache-modules/mod_jk/default.nix')
-rw-r--r--pkgs/servers/http/apache-modules/mod_jk/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/servers/http/apache-modules/mod_jk/default.nix b/pkgs/servers/http/apache-modules/mod_jk/default.nix
new file mode 100644
index 0000000000000..22a50ea8feb67
--- /dev/null
+++ b/pkgs/servers/http/apache-modules/mod_jk/default.nix
@@ -0,0 +1,36 @@
+{ lib, stdenv, fetchurl, apacheHttpd, jdk }:
+
+stdenv.mkDerivation rec {
+  pname = "mod_jk";
+  version = "1.2.49";
+
+  src = fetchurl {
+    url = "mirror://apache/tomcat/tomcat-connectors/jk/tomcat-connectors-${version}-src.tar.gz";
+    hash = "sha256-Q8sCg8koeOnU7xEGMdvSvra1VxPBJ84EMZCyswh1fpw=";
+  };
+
+  configureFlags = [
+    "--with-apxs=${apacheHttpd.dev}/bin/apxs"
+    "--with-java-home=${jdk}"
+  ];
+
+  setSourceRoot = ''
+    sourceRoot=$(echo */native)
+  '';
+
+  installPhase = ''
+    mkdir -p $out/modules
+    cp apache-2.0/mod_jk.so $out/modules
+  '';
+
+  buildInputs = [ apacheHttpd jdk ];
+
+  meta = with lib; {
+    description = "Provides web server plugins to connect web servers with Tomcat";
+    homepage = "https://tomcat.apache.org/download-connectors.cgi";
+    changelog = "https://tomcat.apache.org/connectors-doc/miscellaneous/changelog.html";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ anthonyroussel ];
+    platforms = platforms.unix;
+  };
+}