nix: fix default value of enableDocumentation

This commit is contained in:
Nick Cao 2022-01-30 19:41:10 +08:00
parent 6ae3c24e5b
commit a817568b0f
No known key found for this signature in database
GPG Key ID: 068A56CEF48FA2C1

View File

@ -44,7 +44,7 @@ in
, util-linuxMinimal
, xz
, enableDocumentation ? atLeast24 || stdenv.hostPlatform == stdenv.buildPlatform
, enableDocumentation ? !atLeast24 || stdenv.hostPlatform == stdenv.buildPlatform
, enableStatic ? stdenv.hostPlatform.isStatic
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
, withLibseccomp ? lib.meta.availableOn stdenv.hostPlatform libseccomp, libseccomp