spl: fix evaluation after the parent commit

This doesn't fully fix the tarball job.
This commit is contained in:
Vladimír Čunát 2016-09-03 14:34:07 +02:00
parent 3698f321ef
commit 4745341c69

View file

@ -60,9 +60,10 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington ];
broken = kernel.features.grsecurity or
broken = buildKernel
&& (kernel.features.grsecurity or
# spl marked as broken until following patch is released
# https://github.com/zfsonlinux/spl/commit/fdbc1ba99d1f4d3958189079eee9b6c957e0264b
(versionAtLeast kernel.version "4.7");
(versionAtLeast kernel.version "4.7"));
};
}