libuv: Disable tests on RISC-V
This commit is contained in:
parent
68aefd705b
commit
6fc2ee1bb5
1 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,13 @@
|
|||
{ ... }: final: prev: {
|
||||
{ nixpkgs, ... }: final: prev:
|
||||
let
|
||||
inherit (nixpkgs.lib) optionalAttrs;
|
||||
inherit (prev.stdenv) hostPlatform;
|
||||
in {
|
||||
redis = prev.redis.overrideAttrs ({
|
||||
doCheck = false;
|
||||
});
|
||||
}
|
||||
} // optionalAttrs hostPlatform.isRiscV64 ({
|
||||
libuv = prev.libuv.overrideAttrs ({
|
||||
doCheck = false;
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue