summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ply
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2021-08-16 23:08:02 -0700
committerJoseph Crail <jbcrail@gmail.com>2021-08-16 23:08:35 -0700
commit594d0501b6a02a2300c87b6e8e63fd2f33fbaeed (patch)
tree19f41f635a98be898a779bacb34acd7c8baeecd5 /pkgs/os-specific/linux/ply
parentac06d8d3433f5bb8ad5c3b132d52ad2586228744 (diff)
downloadnixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar.gz
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar.bz2
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar.lz
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar.xz
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.tar.zst
nixpkgs-594d0501b6a02a2300c87b6e8e63fd2f33fbaeed.zip
Assign assertion to meta.broken
Diffstat (limited to 'pkgs/os-specific/linux/ply')
-rw-r--r--pkgs/os-specific/linux/ply/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/ply/default.nix b/pkgs/os-specific/linux/ply/default.nix
index af076e93762..44cce6870e9 100644
--- a/pkgs/os-specific/linux/ply/default.nix
+++ b/pkgs/os-specific/linux/ply/default.nix
@@ -1,7 +1,5 @@
 { lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }:
 
-assert kernel != null -> lib.versionAtLeast kernel.version "4.0";
-
 let
   version = "2.1.1";
 in stdenv.mkDerivation {
@@ -38,5 +36,6 @@ in stdenv.mkDerivation {
     homepage = "https://wkz.github.io/ply/";
     license = [ licenses.gpl2 ];
     maintainers = with maintainers; [ mic92 mbbx6spp ];
+    broken = lib.versionAtLeast kernel.version "4.0";
   };
 }