mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
uwsgi: move defaults to package file
This commit is contained in:
parent
ce75344792
commit
f56be70f3f
@ -1,8 +1,8 @@
|
||||
{ stdenv, lib, fetchurl, pkgconfig, jansson, pcre
|
||||
# plugins: list of strings, eg. [ "python2" "python3" ]
|
||||
, plugins
|
||||
, pam, withPAM ? false
|
||||
, systemd, withSystemd ? false
|
||||
, plugins ? []
|
||||
, pam, withPAM ? stdenv.isLinux
|
||||
, systemd, withSystemd ? stdenv.isLinux
|
||||
, python2, python3, ncurses
|
||||
, ruby, php-embed, mysql
|
||||
}:
|
||||
|
@ -5916,11 +5916,7 @@ in
|
||||
|
||||
usync = callPackage ../applications/misc/usync { };
|
||||
|
||||
uwsgi = callPackage ../servers/uwsgi {
|
||||
plugins = [];
|
||||
withPAM = stdenv.isLinux;
|
||||
withSystemd = stdenv.isLinux;
|
||||
};
|
||||
uwsgi = callPackage ../servers/uwsgi { };
|
||||
|
||||
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user