mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #242019 from fgaz/nix/riscv-no-docs
nix: disable documentation on risc-v
This commit is contained in:
commit
e9297c8161
1 changed files with 7 additions and 1 deletions
|
@ -50,7 +50,13 @@ in
|
|||
, util-linuxMinimal
|
||||
, xz
|
||||
|
||||
, enableDocumentation ? !atLeast24 || stdenv.hostPlatform == stdenv.buildPlatform
|
||||
, enableDocumentation ? !atLeast24 || (
|
||||
(stdenv.hostPlatform == stdenv.buildPlatform) &&
|
||||
# mdbook errors out on risc-v due to a rustc bug
|
||||
# https://github.com/NixOS/nixpkgs/pull/242019
|
||||
# https://github.com/rust-lang/rust/issues/114473
|
||||
!stdenv.buildPlatform.isRiscV
|
||||
)
|
||||
, enableStatic ? stdenv.hostPlatform.isStatic
|
||||
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
|
||||
, withLibseccomp ? lib.meta.availableOn stdenv.hostPlatform libseccomp, libseccomp
|
||||
|
|
Loading…
Reference in a new issue