Merge pull request #14236 from joachifm/modules-broken-on-grsec

Modules broken on grsec
This commit is contained in:
Domen Kožar 2016-03-27 00:49:04 +00:00
commit 32b7b0009f
4 changed files with 7 additions and 2 deletions

View file

@ -56,6 +56,8 @@ stdenv.mkDerivation rec {
platforms = with platforms; linux ++ freebsd;
maintainers = with maintainers; [ wkennington ];
# 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));
};
}

View file

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
license = with licenses; [ lgpl21 gpl2 mit ];
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
broken = (kernel.features.grsecurity or false);
};
}

View file

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/csssuf/rtl8812au";
license = stdenv.lib.licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
broken = (kernel.features.grsecurity or false);
};
}
}

View file

@ -62,5 +62,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington ];
broken = (kernel.features.grsecurity or false);
};
}