Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

findutils: disable tests w/musl

+1
+1
pkgs/tools/misc/findutils/default.nix
··· 21 doCheck 22 = !hostPlatform.isDarwin 23 && !(hostPlatform.libc == "glibc" && hostPlatform.isi686) 24 && hostPlatform == buildPlatform; 25 26 outputs = [ "out" "info" ];
··· 21 doCheck 22 = !hostPlatform.isDarwin 23 && !(hostPlatform.libc == "glibc" && hostPlatform.isi686) 24 + && (hostPlatform.libc != "musl") 25 && hostPlatform == buildPlatform; 26 27 outputs = [ "out" "info" ];