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";
|
|
|
|
version = "2.4.99";
|
2013-02-23 11:07:19 +00:00
|
|
|
|
2005-11-01 20:27:57 +00:00
|
|
|
src = fetchurl {
|
2019-07-03 21:03:46 +01:00
|
|
|
url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "0pnsw4bmajzdbz8pk4wswdmw93shhympf2q9alhbnpfjgsf57gsd";
|
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
|
|
|
|
2019-08-12 01:26:04 +01:00
|
|
|
patches = [ ./cross-build-nm-path.patch ] ++
|
|
|
|
lib.optionals stdenv.hostPlatform.isMusl [
|
|
|
|
# Fix tests not building on musl because they use the glibc-specific
|
|
|
|
# (non-POSIX) `ioctl()` type signature. See #66441.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/openembedded/openembedded-core/30a2af80f5f8c8ddf0f619e4f50451b02baa22dd/meta/recipes-graphics/drm/libdrm/musl-ioctl.patch";
|
|
|
|
sha256 = "0rdmh4k5kb80hhk1sdhlil30yf0s8d8w0fnq0hzyvw3ir1mki3by";
|
|
|
|
})
|
|
|
|
];
|
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 = {
|
2017-08-02 22:50: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
|
|
|
}
|