Assign assertion to meta.broken

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