mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 19:34:06 +00:00
bozohttpd: add bozohttpd-minimal target
This commit is contained in:
parent
dc9165346e
commit
f4f05481e3
@ -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;
|
||||||
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user