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

31 lines
862 B
Nix
Raw Normal View History

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