nixpkgs/pkgs/servers/uwsgi/default.nix

91 lines
2.9 KiB
Nix
Raw Normal View History

2014-12-10 01:41:02 +00:00
{ stdenv, lib, fetchurl, pkgconfig, jansson
# plugins: list of strings, eg. [ "python2" "python3" ]
2014-12-10 01:41:02 +00:00
, plugins
, pam, withPAM ? false
, systemd, withSystemd ? false
2014-12-10 01:41:02 +00:00
, python2, python3, ncurses
2016-06-20 23:39:55 +00:00
, ruby
2014-12-10 01:41:02 +00:00
}:
let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else "3"}" {
interpreter = pkg.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
${pkg.executable} -m compileall $out/${pkg.sitePackages}/
${pkg.executable} -O -m compileall $out/${pkg.sitePackages}/
'';
};
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 ];
})
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 {
2016-03-03 12:42:12 +00:00
name = "uwsgi-${version}";
2016-06-10 23:35:58 +00:00
version = "2.0.13.1";
2014-12-10 01:41:02 +00:00
src = fetchurl {
url = "http://projects.unbit.it/downloads/${name}.tar.gz";
2016-06-10 23:35:58 +00:00
sha256 = "0zwdljaljzshrdcqsrr2l2ak2zcmsps4glac2lrg0xmb28phrjif";
2014-12-10 01:41:02 +00:00
};
nativeBuildInputs = [ python3 pkgconfig ];
buildInputs = [ jansson ]
++ lib.optional withPAM pam
++ lib.optional withSystemd systemd
++ 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
);
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-06-20 23:39:55 +00:00
${lib.concatMapStringsSep ";" (x: "${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
'';
2016-06-10 23:35:58 +00:00
NIX_CFLAGS_LINK = [ "-lsystemd" ];
2014-12-10 01:41:02 +00:00
meta = with stdenv.lib; {
homepage = "http://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 ];
2016-06-10 23:35:58 +00:00
platforms = platforms.linux;
2014-12-10 01:41:02 +00:00
};
}