2021-01-19 12:01:21 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkg-config, meson, ninja, docutils
|
|
|
|
, libpthreadstubs, libpciaccess
|
|
|
|
, withValgrind ? valgrind-light.meta.available, valgrind-light
|
2019-07-20 17:13:21 +00:00
|
|
|
}:
|
2005-11-01 20:27:57 +00:00
|
|
|
|
2012-01-16 17:48:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-03 20:03:46 +00:00
|
|
|
pname = "libdrm";
|
2021-11-08 22:05:50 +00:00
|
|
|
version = "2.4.108";
|
2013-02-23 11:07:19 +00:00
|
|
|
|
2005-11-01 20:27:57 +00:00
|
|
|
src = fetchurl {
|
2020-06-18 11:04:29 +00:00
|
|
|
url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.xz";
|
2021-11-08 22:05:50 +00:00
|
|
|
sha256 = "186nwf7qnzh805iz8k3djq3pd1m79mgfnjsbw7yn6rskpj699mx1";
|
2008-10-08 17:02:48 +00:00
|
|
|
};
|
|
|
|
|
2017-10-06 17:51:14 +00:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2013-08-23 07:54:18 +00:00
|
|
|
|
2021-01-19 12:01:21 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja docutils ];
|
2019-07-20 17:13:21 +00:00
|
|
|
buildInputs = [ libpthreadstubs libpciaccess ]
|
|
|
|
++ lib.optional withValgrind valgrind-light;
|
2009-04-20 18:43:08 +00:00
|
|
|
|
2020-07-28 13:00:06 +00:00
|
|
|
patches = [ ./cross-build-nm-path.patch ];
|
2019-08-02 10:16:32 +00:00
|
|
|
|
2019-07-20 17:13:21 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dnm-path=${stdenv.cc.targetPrefix}nm"
|
|
|
|
"-Dinstall-test-programs=true"
|
2019-08-26 21:08:02 +00:00
|
|
|
"-Domap=true"
|
2019-07-20 17:13:21 +00:00
|
|
|
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
|
|
|
"-Dtegra=true"
|
|
|
|
"-Detnaviv=true"
|
2021-01-30 08:53:37 +00:00
|
|
|
];
|
2012-01-16 17:48:33 +00:00
|
|
|
|
2021-01-19 12:01:21 +00: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 20:27:57 +00:00
|
|
|
};
|
2012-01-16 17:48:33 +00:00
|
|
|
}
|