nixpkgs-suyu/pkgs/servers/http/unit/default.nix

92 lines
3.2 KiB
Nix
Raw Normal View History

2018-12-14 19:34:43 +01:00
{ stdenv, fetchFromGitHub, which
2019-11-18 07:39:09 +01:00
, withPython2 ? false, python2
, withPython3 ? true, python3, ncurses
, withPHP72 ? false, php72base
, withPHP73 ? true, php73base
2019-11-18 07:39:09 +01:00
, withPerl528 ? false, perl528
, withPerl530 ? true, perl530
2018-12-14 19:34:43 +01:00
, withPerldevel ? false, perldevel
2019-11-18 07:39:09 +01:00
, withRuby_2_5 ? false, ruby_2_5
, withRuby_2_6 ? true, ruby_2_6
2020-01-01 01:24:48 +01:00
, withRuby_2_7 ? true, ruby_2_7
2018-12-06 11:08:40 +01:00
, withSSL ? true, openssl ? null
, withIPv6 ? true
, withDebug ? false
}:
with stdenv.lib;
2020-03-22 19:44:55 +01:00
let
phpConfig = {
config.php.embed = true;
config.php.apxs2 = false;
config.php.systemd = false;
config.php.phpdbg = false;
config.php.cgi = false;
config.php.fpm = false;
};
php72-unit = php72base.override phpConfig;
php73-unit = php73base.override phpConfig;
2020-03-22 19:44:55 +01:00
in stdenv.mkDerivation rec {
2020-03-12 18:29:10 +01:00
version = "1.16.0";
pname = "unit";
2018-12-06 11:08:40 +01:00
2018-12-14 19:34:43 +01:00
src = fetchFromGitHub {
owner = "nginx";
repo = "unit";
2019-09-09 01:38:31 +02:00
rev = version;
2020-03-12 18:29:10 +01:00
sha256 = "19gclqhwccpi7y4386ap33ycwhylv4s4kwfc6ik8scmc4pw3sj9l";
2018-12-06 11:08:40 +01:00
};
2019-12-26 15:51:53 +01:00
patches = [
# https://github.com/nginx/unit/issues/357
./drop_cap.patch
];
2018-12-14 19:34:43 +01:00
nativeBuildInputs = [ which ];
buildInputs = [ ]
2019-11-18 07:39:09 +01:00
++ optional withPython2 python2
++ optionals withPython3 [ python3 ncurses ]
++ optional withPHP72 php72-unit
++ optional withPHP73 php73-unit
2019-11-18 07:39:09 +01:00
++ optional withPerl528 perl528
++ optional withPerl530 perl530
2018-12-14 19:34:43 +01:00
++ optional withPerldevel perldevel
2019-11-18 07:39:09 +01:00
++ optional withRuby_2_5 ruby_2_5
++ optional withRuby_2_6 ruby_2_6
2020-01-01 01:24:48 +01:00
++ optional withRuby_2_7 ruby_2_7
2018-12-14 19:34:43 +01:00
++ optional withSSL openssl;
2018-12-06 11:08:40 +01:00
configureFlags = [
2019-02-25 15:08:01 +01:00
"--control=unix:/run/unit/control.unit.sock"
"--pid=/run/unit/unit.pid"
"--user=unit"
"--group=unit"
] ++ optional withSSL "--openssl"
++ optional (!withIPv6) "--no-ipv6"
++ optional withDebug "--debug";
2018-12-06 11:08:40 +01:00
postConfigure = ''
2019-11-18 07:39:09 +01:00
${optionalString withPython2 "./configure python --module=python2 --config=${python2}/bin/python2-config --lib-path=${python2}/lib"}
${optionalString withPython3 "./configure python --module=python3 --config=${python3}/bin/python3-config --lib-path=${python3}/lib"}
${optionalString withPHP72 "./configure php --module=php72 --config=${php72-unit.dev}/bin/php-config --lib-path=${php72-unit}/lib"}
${optionalString withPHP73 "./configure php --module=php73 --config=${php73-unit.dev}/bin/php-config --lib-path=${php73-unit}/lib"}
2019-11-18 07:39:09 +01:00
${optionalString withPerl528 "./configure perl --module=perl528 --perl=${perl528}/bin/perl"}
${optionalString withPerl530 "./configure perl --module=perl530 --perl=${perl530}/bin/perl"}
${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"}
${optionalString withRuby_2_5 "./configure ruby --module=ruby25 --ruby=${ruby_2_5}/bin/ruby"}
${optionalString withRuby_2_6 "./configure ruby --module=ruby26 --ruby=${ruby_2_6}/bin/ruby"}
2020-01-01 01:24:48 +01:00
${optionalString withRuby_2_7 "./configure ruby --module=ruby27 --ruby=${ruby_2_7}/bin/ruby"}
2018-12-06 11:08:40 +01:00
'';
meta = {
description = "Dynamic web and application server, designed to run applications in multiple languages.";
homepage = "https://unit.nginx.org/";
2018-12-06 11:08:40 +01:00
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ izorkin ];
};
}