2021-01-19 13:01:21 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkg-config, meson, ninja, docutils
|
|
|
|
, libpthreadstubs, libpciaccess
|
|
|
|
, withValgrind ? valgrind-light.meta.available, valgrind-light
|
2019-07-20 19:13:21 +02:00
|
|
|
}:
|
2005-11-01 21:27:57 +01:00
|
|
|
|
2012-01-16 18:48:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-03 22:03:46 +02:00
|
|
|
pname = "libdrm";
|
2021-11-08 23:05:50 +01:00
|
|
|
version = "2.4.108";
|
2013-02-23 12:07:19 +01:00
|
|
|
|
2005-11-01 21:27:57 +01:00
|
|
|
src = fetchurl {
|
2020-06-18 13:04:29 +02:00
|
|
|
url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.xz";
|
2021-11-08 23:05:50 +01:00
|
|
|
sha256 = "186nwf7qnzh805iz8k3djq3pd1m79mgfnjsbw7yn6rskpj699mx1";
|
2008-10-08 19:02:48 +02:00
|
|
|
};
|
|
|
|
|
2017-10-06 19:51:14 +02:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2013-08-23 09:54:18 +02:00
|
|
|
|
2021-01-19 13:01:21 +01:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja docutils ];
|
2019-07-20 19:13:21 +02:00
|
|
|
buildInputs = [ libpthreadstubs libpciaccess ]
|
|
|
|
++ lib.optional withValgrind valgrind-light;
|
2009-04-20 20:43:08 +02:00
|
|
|
|
2020-07-28 15:00:06 +02:00
|
|
|
patches = [ ./cross-build-nm-path.patch ];
|
2019-08-02 12:16:32 +02:00
|
|
|
|
2019-07-20 19:13:21 +02:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dnm-path=${stdenv.cc.targetPrefix}nm"
|
|
|
|
"-Dinstall-test-programs=true"
|
2019-08-26 23:08:02 +02:00
|
|
|
"-Domap=true"
|
2019-07-20 19:13:21 +02:00
|
|
|
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
|
|
|
"-Dtegra=true"
|
|
|
|
"-Detnaviv=true"
|
2021-01-30 09:53:37 +01:00
|
|
|
];
|
2012-01-16 18:48:33 +01:00
|
|
|
|
2021-01-19 13:01:21 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://gitlab.freedesktop.org/mesa/drm";
|
|
|
|
downloadPage = "https://dri.freedesktop.org/libdrm/";
|
|
|
|
description = "Direct Rendering Manager library and headers";
|
|
|
|
longDescription = ''
|
|
|
|
A userspace library for accessing the DRM (Direct Rendering Manager) on
|
|
|
|
Linux, BSD and other operating systems that support the ioctl interface.
|
|
|
|
The library provides wrapper functions for the ioctls to avoid exposing
|
|
|
|
the kernel interface directly, and for chipsets with drm memory manager,
|
|
|
|
support for tracking relocations and buffers.
|
|
|
|
New functionality in the kernel DRM drivers typically requires a new
|
|
|
|
libdrm, but a new libdrm will always work with an older kernel.
|
|
|
|
|
|
|
|
libdrm is a low-level library, typically used by graphics drivers such as
|
|
|
|
the Mesa drivers, the X drivers, libva and similar projects.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
2005-11-01 21:27:57 +01:00
|
|
|
};
|
2012-01-16 18:48:33 +01:00
|
|
|
}
|