nixpkgs/pkgs/development/libraries/kmsxx/default.nix

31 lines
860 B
Nix
Raw Normal View History

2019-10-26 10:40:13 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libdrm
, withPython ? false, python }:
2017-10-06 21:17:14 +01:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "kmsxx";
2020-02-15 05:08:58 +00:00
version = "2020-02-14";
2017-10-06 21:17:14 +01:00
2017-10-12 16:01:37 +01:00
src = fetchFromGitHub {
owner = "tomba";
repo = "kmsxx";
2017-10-06 21:17:14 +01:00
fetchSubmodules = true;
2020-02-15 05:08:58 +00:00
rev = "7c5e645112a899ad018219365c3898b0e896353f";
sha256 = "1hj4gk4gwlvpjprjbrmrbrzqjhdgszsndrb1i4f9z7mjvdv8gij2";
2017-10-06 21:17:14 +01:00
};
enableParallelBuilding = true;
2019-10-26 10:40:13 +01:00
cmakeFlags = stdenv.lib.optional (!withPython) "-DKMSXX_ENABLE_PYTHON=OFF";
2017-10-06 21:17:14 +01:00
nativeBuildInputs = [ cmake pkgconfig ];
2017-10-08 12:47:25 +01:00
buildInputs = [ libdrm python ];
2017-10-06 21:17:14 +01:00
meta = with stdenv.lib; {
description = "C++11 library, utilities and python bindings for Linux kernel mode setting";
homepage = https://github.com/tomba/kmsxx;
license = licenses.mpl20;
2017-10-12 16:01:37 +01:00
maintainers = with maintainers; [ gnidorah ];
2017-10-06 21:17:14 +01:00
platforms = platforms.linux;
};
}