uwsgi: enable php plugin
This commit is contained in:
parent
a7f25fe167
commit
3f3b6e6b6c
@ -4,7 +4,7 @@
|
|||||||
, pam, withPAM ? false
|
, pam, withPAM ? false
|
||||||
, systemd, withSystemd ? false
|
, systemd, withSystemd ? false
|
||||||
, python2, python3, ncurses
|
, python2, python3, ncurses
|
||||||
, ruby
|
, ruby, php-embed
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else "3"}" {
|
let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else "3"}" {
|
||||||
@ -26,9 +26,16 @@ let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else
|
|||||||
inputs = [ ruby ];
|
inputs = [ ruby ];
|
||||||
})
|
})
|
||||||
(lib.nameValuePair "cgi" {
|
(lib.nameValuePair "cgi" {
|
||||||
|
# usage: https://uwsgi-docs.readthedocs.io/en/latest/CGI.html?highlight=cgi
|
||||||
path = "plugins/cgi";
|
path = "plugins/cgi";
|
||||||
inputs = [ ];
|
inputs = [ ];
|
||||||
})
|
})
|
||||||
|
(lib.nameValuePair "php" {
|
||||||
|
# usage: https://uwsgi-docs.readthedocs.io/en/latest/PHP.html#running-php-apps-with-nginx
|
||||||
|
path = "plugins/php";
|
||||||
|
preBuild = "touch unix.h";
|
||||||
|
inputs = [ php-embed php-embed.nativeBuildInputs ];
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
getPlugin = name:
|
getPlugin = name:
|
||||||
@ -74,7 +81,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
mkdir -p $pluginDir
|
mkdir -p $pluginDir
|
||||||
python3 uwsgiconfig.py --build nixos
|
python3 uwsgiconfig.py --build nixos
|
||||||
${lib.concatMapStringsSep ";" (x: "${x.interpreter or "python3"} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed}
|
${lib.concatMapStringsSep ";" (x: "${x.preBuild or ""}\n ${x.interpreter or "python3"} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -88,7 +95,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://uwsgi-docs.readthedocs.org/en/latest/";
|
homepage = "http://uwsgi-docs.readthedocs.org/en/latest/";
|
||||||
description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
|
description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ abbradar ];
|
maintainers = with maintainers; [ abbradar schneefux ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user