mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
bozohttpd: add bozohttpd-minimal target
This commit is contained in:
parent
dc9165346e
commit
f4f05481e3
2 changed files with 9 additions and 7 deletions
|
@ -6,14 +6,15 @@
|
|||
, inetutils
|
||||
, wget
|
||||
, openssl
|
||||
, userSupport ? true
|
||||
, cgiSupport ? true
|
||||
, dirIndexSupport ? true
|
||||
, dynamicContentSupport ? true
|
||||
, sslSupport ? true
|
||||
, luaSupport ? true
|
||||
, minimal ? false
|
||||
, userSupport ? !minimal
|
||||
, cgiSupport ? !minimal
|
||||
, dirIndexSupport ? !minimal
|
||||
, dynamicContentSupport ? !minimal
|
||||
, sslSupport ? !minimal
|
||||
, luaSupport ? !minimal
|
||||
, lua
|
||||
, htpasswdSupport ? true
|
||||
, htpasswdSupport ? !minimal
|
||||
}:
|
||||
|
||||
let inherit (lib) optional optionals;
|
||||
|
|
|
@ -1954,6 +1954,7 @@ in
|
|||
boxfs = callPackage ../tools/filesystems/boxfs { };
|
||||
|
||||
bozohttpd = callPackage ../servers/http/bozohttpd { };
|
||||
bozohttpd-minimal = callPackage ../servers/http/bozohttpd { minimal = true; };
|
||||
|
||||
bpytop = callPackage ../tools/system/bpytop { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue