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