forked from mirrors/nixpkgs
Merge pull request #57773 from colemickens/libdrm-meson
libdrm: build with meson
This commit is contained in:
commit
2b248d5bd2
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind-light }:
|
{ stdenv, fetchurl, pkgconfig, meson, ninja, libpthreadstubs, libpciaccess, valgrind-light }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libdrm-2.4.98";
|
name = "libdrm-2.4.98";
|
||||||
|
@ -10,9 +10,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
outputs = [ "out" "dev" "bin" ];
|
outputs = [ "out" "dev" "bin" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig meson ninja ];
|
||||||
buildInputs = [ libpthreadstubs libpciaccess valgrind-light ];
|
buildInputs = [ libpthreadstubs libpciaccess valgrind-light ];
|
||||||
# libdrm as of 2.4.70 does not actually do anything with udev.
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
for a in */*-symbol-check ; do
|
for a in */*-symbol-check ; do
|
||||||
|
@ -20,13 +19,15 @@ stdenv.mkDerivation rec {
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [ "--enable-install-test-programs" ]
|
mesonFlags =
|
||||||
|
[ "-Dinstall-test-programs=true" ]
|
||||||
++ stdenv.lib.optionals (stdenv.isAarch32 || stdenv.isAarch64)
|
++ stdenv.lib.optionals (stdenv.isAarch32 || stdenv.isAarch64)
|
||||||
[ "--enable-tegra-experimental-api" "--enable-etnaviv-experimental-api" ]
|
[ "-Dtegra=true" "-Detnaviv=true" ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin "-C"
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-Dintel=false"
|
||||||
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-intel"
|
|
||||||
;
|
;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://dri.freedesktop.org/libdrm/;
|
homepage = https://dri.freedesktop.org/libdrm/;
|
||||||
description = "Library for accessing the kernel's Direct Rendering Manager";
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
||||||
|
|
Loading…
Reference in a new issue