summary refs log blame commit diff
path: root/pkgs/development/libraries/kmsxx/default.nix
blob: 222747b4d734c1d2a954b2374f5008ffa2e8b1f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                         
                                      
 
                     
                  
                         
 


                         
                           

                                                                    

    
                                                                      
 
                                           
                                                                  
 
                    
                                                                                               
                                                
                             
                                        
                                
                                             

    
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libdrm
, withPython ? false, python ? null }:

stdenv.mkDerivation {
  pname = "kmsxx";
  version = "2020-08-04";

  src = fetchFromGitHub {
    owner = "tomba";
    repo = "kmsxx";
    fetchSubmodules = true;
    rev = "38bee3092f2d477f1baebfcae464f888d3d04bbe";
    sha256 = "0xz4m9bk0naawxwpx5cy1j3cm6c8c9m5y551csk88y88x1g0z0xh";
  };

  cmakeFlags = lib.optional (!withPython) "-DKMSXX_ENABLE_PYTHON=OFF";

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ libdrm ] ++ lib.optionals withPython [ python ];

  meta = with lib; {
    description = "C++11 library, utilities and python bindings for Linux kernel mode setting";
    homepage = "https://github.com/tomba/kmsxx";
    license = licenses.mpl20;
    maintainers = with maintainers; [ ];
    platforms = platforms.linux;
    broken = true; # marked broken 2021-03-26
  };
}