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 , inetutils
, wget , wget
, openssl , openssl
, userSupport ? true , minimal ? false
, cgiSupport ? true , userSupport ? !minimal
, dirIndexSupport ? true , cgiSupport ? !minimal
, dynamicContentSupport ? true , dirIndexSupport ? !minimal
, sslSupport ? true , dynamicContentSupport ? !minimal
, luaSupport ? true , sslSupport ? !minimal
, luaSupport ? !minimal
, lua , lua
, htpasswdSupport ? true , htpasswdSupport ? !minimal
}: }:
let inherit (lib) optional optionals; let inherit (lib) optional optionals;

View File

@ -1954,6 +1954,7 @@ in
boxfs = callPackage ../tools/filesystems/boxfs { }; boxfs = callPackage ../tools/filesystems/boxfs { };
bozohttpd = callPackage ../servers/http/bozohttpd { }; bozohttpd = callPackage ../servers/http/bozohttpd { };
bozohttpd-minimal = callPackage ../servers/http/bozohttpd { minimal = true; };
bpytop = callPackage ../tools/system/bpytop { }; bpytop = callPackage ../tools/system/bpytop { };