Merge pull request #14236 from joachifm/modules-broken-on-grsec
Modules broken on grsec
This commit is contained in:
commit
32b7b0009f
@ -56,6 +56,8 @@ stdenv.mkDerivation rec {
|
|||||||
platforms = with platforms; linux ++ freebsd;
|
platforms = with platforms; linux ++ freebsd;
|
||||||
maintainers = with maintainers; [ wkennington ];
|
maintainers = with maintainers; [ wkennington ];
|
||||||
# kernel 4.2 is the most recent supported kernel
|
# kernel 4.2 is the most recent supported kernel
|
||||||
broken = kernel != null && builtins.compareVersions kernel.version "4.2" == 1;
|
broken = kernel != null &&
|
||||||
|
(builtins.compareVersions kernel.version "4.2" == 1 ||
|
||||||
|
(kernel.features.grsecurity or false));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
license = with licenses; [ lgpl21 gpl2 mit ];
|
license = with licenses; [ lgpl21 gpl2 mit ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
|
broken = (kernel.features.grsecurity or false);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://github.com/csssuf/rtl8812au";
|
homepage = "https://github.com/csssuf/rtl8812au";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
broken = (kernel.features.grsecurity or false);
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -62,5 +62,6 @@ stdenv.mkDerivation rec {
|
|||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ jcumming wizeman wkennington ];
|
maintainers = with maintainers; [ jcumming wizeman wkennington ];
|
||||||
|
broken = (kernel.features.grsecurity or false);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user