kmsxx: mark broken

This commit is contained in:
Frederik Rietdijk 2021-03-26 10:31:12 +01:00
parent 6809a2d5a9
commit 90198ed989

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation {
cmakeFlags = lib.optional (!withPython) "-DKMSXX_ENABLE_PYTHON=OFF";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libdrm python ];
buildInputs = [ libdrm ] ++ lib.optionals withPython [ python ];
meta = with lib; {
description = "C++11 library, utilities and python bindings for Linux kernel mode setting";
@ -24,5 +24,6 @@ stdenv.mkDerivation {
license = licenses.mpl20;
maintainers = with maintainers; [ gnidorah ];
platforms = platforms.linux;
broken = true; # marked broken 2021-03-26
};
}