summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 10:31:12 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:21 +0200
commit90198ed989b23ca4f38e7f1c47e00f9b720fc772 (patch)
tree3c0ea93ca9f859a795f0b11fd6073d4d0eb3dce1
parent6809a2d5a95a7321e3ec1386fa1881873cab40a2 (diff)
downloadnixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar.gz
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar.bz2
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar.lz
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar.xz
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.tar.zst
nixpkgs-90198ed989b23ca4f38e7f1c47e00f9b720fc772.zip
kmsxx: mark broken
-rw-r--r--pkgs/development/libraries/kmsxx/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/kmsxx/default.nix b/pkgs/development/libraries/kmsxx/default.nix
index eea310a7ec4..c88dde7e445 100644
--- a/pkgs/development/libraries/kmsxx/default.nix
+++ b/pkgs/development/libraries/kmsxx/default.nix
@@ -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
   };
 }