mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
spl: mark it broken on kernels higher then 4.7
until new spl version is release
This commit is contained in:
parent
686bb1a6e4
commit
3698f321ef
@ -60,6 +60,9 @@ stdenv.mkDerivation rec {
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ jcumming wizeman wkennington ];
|
||||
broken = (kernel.features.grsecurity or false);
|
||||
broken = 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");
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user