beegfs: restrict kernel version

BeeGFS 6.17 fails to build with Linux 4.14.

+3
+3
pkgs/os-specific/linux/beegfs/kernel-module.nix
··· 16 16 17 17 nativeBuildInputs = [ which kmod ]; 18 18 19 + buildInputs = kernel.moduleBuildDependencies; 20 + 19 21 makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build/" ]; 20 22 21 23 postPatch = '' ··· 39 41 platforms = [ "i686-linux" "x86_64-linux" ]; 40 42 license = licenses.gpl2; 41 43 maintainers = with maintainers; [ markuskowa ]; 44 + broken = versionAtLeast kernel.version "4.14"; 42 45 }; 43 46 }