mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
tomcat-native: init at 1.2.23
This commit is contained in:
parent
a0307bad46
commit
6b3506458e
29
pkgs/servers/http/tomcat/tomcat-native.nix
Normal file
29
pkgs/servers/http/tomcat/tomcat-native.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, apr, jdk, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tomcat-native";
|
||||
version = "1.2.23";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://apache/tomcat/tomcat-connectors/native/${version}/source/${pname}-${version}-src.tar.gz";
|
||||
sha512 = "89a0363961d322a87f4e752f4727f54f28ac6e4ad10fa21b6b7390c62b041d4068672d95495d9233c1cad7d6c1dc3c85fbd0186894085b3b94e476876af160ee";
|
||||
};
|
||||
|
||||
sourceRoot = "${pname}-${version}-src/native";
|
||||
|
||||
buildInputs = [ apr jdk openssl ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-apr=${apr.dev}"
|
||||
"--with-java-home=${jdk}"
|
||||
"--with-ssl=${openssl.dev}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An optional component for use with Apache Tomcat that allows Tomcat to use certain native resources for performance, compatibility, etc";
|
||||
homepage = "https://tomcat.apache.org/native-doc/";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ aanderse ];
|
||||
};
|
||||
}
|
@ -15667,6 +15667,8 @@ in
|
||||
|
||||
tomcat_connectors = callPackage ../servers/http/apache-modules/tomcat-connectors { };
|
||||
|
||||
tomcat-native = callPackage ../servers/http/tomcat/tomcat-native.nix { };
|
||||
|
||||
pies = callPackage ../servers/pies { };
|
||||
|
||||
rpcbind = callPackage ../servers/rpcbind { };
|
||||
|
Loading…
Reference in New Issue
Block a user