2020-12-21 21:48:19 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, jansson, pcre
|
2016-02-19 14:00:19 +00:00
|
|
|
# plugins: list of strings, eg. [ "python2" "python3" ]
|
2019-02-03 15:30:42 +00:00
|
|
|
, plugins ? []
|
|
|
|
, pam, withPAM ? stdenv.isLinux
|
|
|
|
, systemd, withSystemd ? stdenv.isLinux
|
2014-12-10 01:41:02 +00:00
|
|
|
, python2, python3, ncurses
|
2020-03-22 13:31:13 +00:00
|
|
|
, ruby, php, libmysqlclient
|
2014-12-10 01:41:02 +00:00
|
|
|
}:
|
|
|
|
|
2020-03-22 13:31:13 +00:00
|
|
|
let php-embed = php.override {
|
2020-04-24 12:29:46 +01:00
|
|
|
embedSupport = true;
|
|
|
|
apxs2Support = false;
|
2020-03-22 13:31:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pythonPlugin = pkg : lib.nameValuePair "python${if pkg.isPy2 then "2" else "3"}" {
|
2016-02-19 14:00:19 +00:00
|
|
|
interpreter = pkg.interpreter;
|
2014-12-10 01:41:02 +00:00
|
|
|
path = "plugins/python";
|
2016-02-19 14:00:19 +00:00
|
|
|
inputs = [ pkg ncurses ];
|
2014-12-10 01:41:02 +00:00
|
|
|
install = ''
|
|
|
|
install -Dm644 uwsgidecorators.py $out/${pkg.sitePackages}/uwsgidecorators.py
|
|
|
|
${pkg.executable} -m compileall $out/${pkg.sitePackages}/
|
|
|
|
${pkg.executable} -O -m compileall $out/${pkg.sitePackages}/
|
|
|
|
'';
|
|
|
|
};
|
2016-02-19 14:00:19 +00:00
|
|
|
|
|
|
|
available = lib.listToAttrs [
|
|
|
|
(pythonPlugin python2)
|
2014-12-10 01:41:02 +00:00
|
|
|
(pythonPlugin python3)
|
2016-06-21 00:39:55 +01:00
|
|
|
(lib.nameValuePair "rack" {
|
|
|
|
path = "plugins/rack";
|
|
|
|
inputs = [ ruby ];
|
|
|
|
})
|
2016-09-24 15:48:10 +01:00
|
|
|
(lib.nameValuePair "cgi" {
|
2016-10-22 13:08:30 +01:00
|
|
|
# usage: https://uwsgi-docs.readthedocs.io/en/latest/CGI.html?highlight=cgi
|
2016-09-24 15:48:10 +01:00
|
|
|
path = "plugins/cgi";
|
|
|
|
inputs = [ ];
|
|
|
|
})
|
2016-10-22 13:08:30 +01:00
|
|
|
(lib.nameValuePair "php" {
|
|
|
|
# usage: https://uwsgi-docs.readthedocs.io/en/latest/PHP.html#running-php-apps-with-nginx
|
|
|
|
path = "plugins/php";
|
2020-09-07 10:59:17 +01:00
|
|
|
inputs = [
|
|
|
|
php-embed
|
|
|
|
php-embed.extensions.session
|
|
|
|
php-embed.extensions.session.dev
|
|
|
|
php-embed.unwrapped.dev
|
|
|
|
] ++ php-embed.unwrapped.buildInputs;
|
2016-10-22 13:08:30 +01:00
|
|
|
})
|
2014-12-10 01:41:02 +00:00
|
|
|
];
|
|
|
|
|
2016-02-19 14:00:19 +00:00
|
|
|
getPlugin = name:
|
|
|
|
let all = lib.concatStringsSep ", " (lib.attrNames available);
|
|
|
|
in if lib.hasAttr name available
|
|
|
|
then lib.getAttr name available // { inherit name; }
|
|
|
|
else throw "Unknown UWSGI plugin ${name}, available : ${all}";
|
|
|
|
|
|
|
|
needed = builtins.map getPlugin plugins;
|
|
|
|
in
|
2014-12-10 01:41:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "uwsgi";
|
2020-06-25 13:00:00 +01:00
|
|
|
version = "2.0.19.1";
|
2014-12-10 01:41:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://projects.unbit.it/downloads/${pname}-${version}.tar.gz";
|
2020-06-25 13:00:00 +01:00
|
|
|
sha256 = "0256v72b7zr6ds4srpaawk1px3bp0djdwm239w3wrxpw7dzk1gjn";
|
2014-12-10 01:41:02 +00:00
|
|
|
};
|
|
|
|
|
2020-09-07 10:59:17 +01:00
|
|
|
patches = [ ./0001-no-ext-session-php_session.h-on-NixOS.patch ];
|
|
|
|
|
2014-12-10 01:41:02 +00:00
|
|
|
nativeBuildInputs = [ python3 pkgconfig ];
|
|
|
|
|
2018-11-21 22:44:59 +00:00
|
|
|
buildInputs = [ jansson pcre ]
|
2016-02-19 14:00:19 +00:00
|
|
|
++ lib.optional withPAM pam
|
|
|
|
++ lib.optional withSystemd systemd
|
|
|
|
++ lib.concatMap (x: x.inputs) needed
|
2014-12-10 01:41:02 +00:00
|
|
|
;
|
|
|
|
|
2016-02-19 14:00:19 +00:00
|
|
|
basePlugins = lib.concatStringsSep ","
|
|
|
|
( lib.optional withPAM "pam"
|
|
|
|
++ lib.optional withSystemd "systemd_logger"
|
2014-12-10 01:41:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit python2 python3;
|
|
|
|
};
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
export pluginDir=$out/lib/uwsgi
|
|
|
|
substituteAll ${./nixos.ini} buildconf/nixos.ini
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
mkdir -p $pluginDir
|
|
|
|
python3 uwsgiconfig.py --build nixos
|
2016-10-22 13:08:30 +01:00
|
|
|
${lib.concatMapStringsSep ";" (x: "${x.preBuild or ""}\n ${x.interpreter or "python3"} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed}
|
2014-12-10 01:41:02 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 uwsgi $out/bin/uwsgi
|
2016-06-21 00:39:55 +01:00
|
|
|
${lib.concatMapStringsSep "\n" (x: x.install or "") needed}
|
2014-12-10 01:41:02 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://uwsgi-docs.readthedocs.org/en/latest/";
|
2014-12-10 01:41:02 +00:00
|
|
|
description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
|
|
|
|
license = licenses.gpl2;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ abbradar schneefux globin ];
|
2019-05-27 20:41:38 +01:00
|
|
|
platforms = platforms.unix;
|
2014-12-10 01:41:02 +00:00
|
|
|
};
|
|
|
|
}
|