nixpkgs/pkgs/servers/uwsgi/default.nix

138 lines
4.8 KiB
Nix
Raw Normal View History

{ stdenv, nixosTests, lib, fetchurl, pkg-config, jansson, pcre
# plugins: list of strings, eg. [ "python2" "python3" ]
2019-02-03 15:30:42 +00:00
, plugins ? []
, pam, withPAM ? stdenv.isLinux
, systemd, withSystemd ? stdenv.isLinux
2020-11-04 18:21:02 +00:00
, libcap, withCap ? stdenv.isLinux
2014-12-10 01:41:02 +00:00
, python2, python3, ncurses
2021-02-16 06:53:19 +00:00
, ruby, php
2014-12-10 01:41:02 +00:00
}:
let php-embed = php.override {
embedSupport = true;
apxs2Support = false;
};
pythonPlugin = pkg : lib.nameValuePair "python${if pkg.isPy2 then "2" else "3"}" {
2020-10-03 22:58:17 +00:00
interpreter = pkg.pythonForBuild.interpreter;
2014-12-10 01:41:02 +00:00
path = "plugins/python";
inputs = [ pkg ncurses ];
2014-12-10 01:41:02 +00:00
install = ''
install -Dm644 uwsgidecorators.py $out/${pkg.sitePackages}/uwsgidecorators.py
2020-10-03 22:58:17 +00:00
${pkg.pythonForBuild.executable} -m compileall $out/${pkg.sitePackages}/
${pkg.pythonForBuild.executable} -O -m compileall $out/${pkg.sitePackages}/
2014-12-10 01:41:02 +00:00
'';
};
available = lib.listToAttrs [
(pythonPlugin python2)
2014-12-10 01:41:02 +00:00
(pythonPlugin python3)
2016-06-20 23:39:55 +00:00
(lib.nameValuePair "rack" {
path = "plugins/rack";
inputs = [ ruby ];
})
2016-09-24 14:48:10 +00:00
(lib.nameValuePair "cgi" {
2016-10-22 12:08:30 +00:00
# usage: https://uwsgi-docs.readthedocs.io/en/latest/CGI.html?highlight=cgi
2016-09-24 14:48:10 +00:00
path = "plugins/cgi";
inputs = [ ];
})
2016-10-22 12:08:30 +00:00
(lib.nameValuePair "php" {
# usage: https://uwsgi-docs.readthedocs.io/en/latest/PHP.html#running-php-apps-with-nginx
path = "plugins/php";
inputs = [
php-embed
php-embed.extensions.session
php-embed.extensions.session.dev
php-embed.unwrapped.dev
] ++ php-embed.unwrapped.buildInputs;
2016-10-22 12:08:30 +00:00
})
2014-12-10 01:41:02 +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 {
pname = "uwsgi";
version = "2.0.19.1";
2014-12-10 01:41:02 +00:00
src = fetchurl {
url = "https://projects.unbit.it/downloads/${pname}-${version}.tar.gz";
sha256 = "0256v72b7zr6ds4srpaawk1px3bp0djdwm239w3wrxpw7dzk1gjn";
2014-12-10 01:41:02 +00:00
};
patches = [
./no-ext-session-php_session.h-on-NixOS.patch
./additional-php-ldflags.patch
];
nativeBuildInputs = [ python3 pkg-config ];
2014-12-10 01:41:02 +00:00
buildInputs = [ jansson pcre ]
++ lib.optional withPAM pam
++ lib.optional withSystemd systemd
2020-11-04 18:21:02 +00:00
++ lib.optional withCap libcap
++ lib.concatMap (x: x.inputs) needed
2014-12-10 01:41:02 +00:00
;
basePlugins = lib.concatStringsSep ","
( lib.optional withPAM "pam"
++ lib.optional withSystemd "systemd_logger"
2014-12-10 01:41:02 +00:00
);
2020-11-04 18:21:02 +00:00
UWSGI_INCLUDES = lib.optionalString withCap "${libcap.dev}/include";
2014-12-10 01:41:02 +00:00
passthru = {
inherit python2 python3;
};
2020-10-03 22:58:17 +00:00
postPatch = ''
for f in uwsgiconfig.py plugins/*/uwsgiplugin.py; do
substituteInPlace "$f" \
--replace pkg-config "$PKG_CONFIG"
done
'';
2014-12-10 01:41:02 +00:00
configurePhase = ''
export pluginDir=$out/lib/uwsgi
substituteAll ${./nixos.ini} buildconf/nixos.ini
'';
# this is a hack to make the php plugin link with session.so (which on nixos is a separate package)
# the hack works in coordination with ./additional-php-ldflags.patch
UWSGICONFIG_PHP_LDFLAGS = lib.optionalString (builtins.any (x: x.name == "php") needed)
(lib.concatStringsSep "," [
"-Wl"
"-rpath=${php-embed.extensions.session}/lib/php/extensions/"
"--library-path=${php-embed.extensions.session}/lib/php/extensions/"
"-l:session.so"
]);
2014-12-10 01:41:02 +00:00
buildPhase = ''
mkdir -p $pluginDir
python3 uwsgiconfig.py --build nixos
2016-10-22 12:08:30 +00: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-20 23:39:55 +00:00
${lib.concatMapStringsSep "\n" (x: x.install or "") needed}
2014-12-10 01:41:02 +00:00
'';
meta = with lib; {
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;
maintainers = with maintainers; [ abbradar schneefux globin ];
2019-05-27 19:41:38 +00:00
platforms = platforms.unix;
2014-12-10 01:41:02 +00:00
};
passthru.tests.uwsgi = nixosTests.uwsgi;
2014-12-10 01:41:02 +00:00
}