linuxPackages.spl: don't mark as broken on kernel >= 4.7

Compatibility added in c8c688b0c9.
This commit is contained in:
Franz Pletz 2016-09-25 14:55:45 +02:00
parent 5000f5050a
commit 30ae939142
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -60,10 +60,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz ];
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"));
broken = buildKernel && kernel.features.grsecurity;
};
}