Assign assertion to meta.broken

+1 -2
+1 -2
pkgs/os-specific/linux/ply/default.nix
··· 1 1 { lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }: 2 2 3 - assert kernel != null -> lib.versionAtLeast kernel.version "4.0"; 4 - 5 3 let 6 4 version = "2.1.1"; 7 5 in stdenv.mkDerivation { ··· 38 36 homepage = "https://wkz.github.io/ply/"; 39 37 license = [ licenses.gpl2 ]; 40 38 maintainers = with maintainers; [ mic92 mbbx6spp ]; 39 + broken = lib.versionAtLeast kernel.version "4.0"; 41 40 }; 42 41 }