2019-07-20 18:13:21 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, meson, ninja, libpthreadstubs, libpciaccess
|
2019-08-12 01:26:04 +01:00
|
|
|
, withValgrind ? valgrind-light.meta.available, valgrind-light, fetchpatch
|
2019-07-20 18:13:21 +01:00
|
|
|
}:
|
2005-11-01 20:27:57 +00:00
|
|
|
|
2012-01-16 17:48:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-03 21:03:46 +01:00
|
|
|
pname = "libdrm";
|
2020-11-18 19:08:10 +00:00
|
|
|
version = "2.4.103";
|
2013-02-23 11:07:19 +00:00
|
|
|
|
2005-11-01 20:27:57 +00:00
|
|
|
src = fetchurl {
|
2020-06-18 12:04:29 +01:00
|
|
|
url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.xz";
|
2020-11-18 19:08:10 +00:00
|
|
|
sha256 = "08h2nnf4w96b4ql7485mvjgbbsb8rwc0qa93fdm1cq34pbyszq1z";
|
2008-10-08 18:02:48 +01:00
|
|
|
};
|
|
|
|
|
2017-10-06 18:51:14 +01:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2013-08-23 08:54:18 +01:00
|
|
|
|
2019-03-16 23:56:49 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja ];
|
2019-07-20 18:13:21 +01:00
|
|
|
buildInputs = [ libpthreadstubs libpciaccess ]
|
|
|
|
++ lib.optional withValgrind valgrind-light;
|
2009-04-20 19:43:08 +01:00
|
|
|
|
2020-07-28 14:00:06 +01:00
|
|
|
patches = [ ./cross-build-nm-path.patch ];
|
2019-08-02 11:16:32 +01:00
|
|
|
|
2018-08-08 19:45:53 +01:00
|
|
|
postPatch = ''
|
|
|
|
for a in */*-symbol-check ; do
|
|
|
|
patchShebangs $a
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2019-07-20 18:13:21 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dnm-path=${stdenv.cc.targetPrefix}nm"
|
|
|
|
"-Dinstall-test-programs=true"
|
2019-08-26 22:08:02 +01:00
|
|
|
"-Domap=true"
|
2019-07-20 18:13:21 +01:00
|
|
|
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
|
|
|
"-Dtegra=true"
|
|
|
|
"-Detnaviv=true"
|
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-Dintel=false";
|
2012-01-16 17:48:33 +00:00
|
|
|
|
2019-03-16 23:56:49 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-10-08 18:02:48 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://dri.freedesktop.org/libdrm/";
|
2008-10-08 18:02:48 +01:00
|
|
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
2009-10-29 14:52:10 +00:00
|
|
|
license = "bsd";
|
2019-07-20 18:13:21 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2005-11-01 20:27:57 +00:00
|
|
|
};
|
2012-01-16 17:48:33 +00:00
|
|
|
}
|