summary refs log tree commit diff
path: root/pkgs/servers/uwsgi/default.nix
blob: bf168611f3864d638e4d56e69431c3eaf6cef040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{ stdenv, lib, fetchurl, pkgconfig, jansson
, plugins
, pam, withPAM ? stdenv.isLinux
, systemd, withSystemd ? stdenv.isLinux
, python2, python3, ncurses
}:

let pythonPlugin = pkg : { name = "python${if pkg ? isPy2 then "2" else "3"}";
                           interpreter = pkg;
                           path = "plugins/python";
                           deps = [ pkg ncurses ];
                           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 = [ (pythonPlugin python2)
                  (pythonPlugin python3)
                ];
     needed = builtins.filter (x: lib.any (y: x.name == y) plugins) available;
in

assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == [];

stdenv.mkDerivation rec {
  name = "uwsgi-2.0.10";

  src = fetchurl {
    url = "http://projects.unbit.it/downloads/${name}.tar.gz";
    sha256 = "12q2sn35vf1ils5043svq8da0czy54k63ziybvl33a9dqbb83cy0";
  };

  nativeBuildInputs = [ python3 pkgconfig ];

  buildInputs =  with stdenv.lib;
                 [ jansson ]
              ++ optional withPAM pam
              ++ optional withSystemd systemd
              ++ lib.concatMap (x: x.deps) needed
              ;

  basePlugins =  with stdenv.lib;
                 concatStringsSep ","
                 (  optional withPAM "pam"
                 ++ optional withSystemd "systemd_logger"
                 );

  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
    ${lib.concatMapStringsSep ";" (x: "${x.interpreter.interpreter} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed}
  '';

  installPhase = ''
    install -Dm755 uwsgi $out/bin/uwsgi
    #cp *_plugin.so $pluginDir || true
    ${lib.concatMapStringsSep "\n" (x: x.install) needed}
  '';

  meta = with stdenv.lib; {
    homepage = http://uwsgi-docs.readthedocs.org/en/latest/;
    description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
    license = licenses.gpl2;
    maintainers = with maintainers; [ abbradar ];
  };
}