bozohttpd: add bozohttpd-minimal target

This commit is contained in:
embr 2021-05-26 11:38:57 +02:00
parent dc9165346e
commit f4f05481e3
2 changed files with 9 additions and 7 deletions

View file

@ -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;

View file

@ -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 { };