aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/uwsgi
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2017-05-31 23:35:26 +0200
committerNikolay Amiantov <ab@fmap.me>2017-06-02 19:56:22 +0300
commite37f970d00ca93134afa91a7a9088636aec8008c (patch)
treed01179f092d1a374d430c4236ee2ce07645460f7 /pkgs/servers/uwsgi
parent9cc17871c51ab13a4116c858e92a11b6b2e74cde (diff)
uwsgi: fix php plugin build
Diffstat (limited to 'pkgs/servers/uwsgi')
-rw-r--r--pkgs/servers/uwsgi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix
index 36d6fc3a62d4..f871e6adf2be 100644
--- a/pkgs/servers/uwsgi/default.nix
+++ b/pkgs/servers/uwsgi/default.nix
@@ -34,7 +34,7 @@ let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else
# 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 ];
+ inputs = [ php-embed ] ++ php-embed.buildInputs;
})
];