0e3c8a95da
The libdrm `musl-ioctl.patch` is no longer necessary, see:
015e631cd1
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, pkgconfig, meson, ninja, libpthreadstubs, libpciaccess
|
|
, withValgrind ? valgrind-light.meta.available, valgrind-light, fetchpatch
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdrm";
|
|
version = "2.4.102";
|
|
|
|
src = fetchurl {
|
|
url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "0nx0bd9dhymdsd99v4ifib77yjirkvkxf5hzdkbr7qr8dhrzkjwb";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "bin" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja ];
|
|
buildInputs = [ libpthreadstubs libpciaccess ]
|
|
++ lib.optional withValgrind valgrind-light;
|
|
|
|
patches = [ ./cross-build-nm-path.patch ];
|
|
|
|
postPatch = ''
|
|
for a in */*-symbol-check ; do
|
|
patchShebangs $a
|
|
done
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dnm-path=${stdenv.cc.targetPrefix}nm"
|
|
"-Dinstall-test-programs=true"
|
|
"-Domap=true"
|
|
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
|
"-Dtegra=true"
|
|
"-Detnaviv=true"
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-Dintel=false";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://dri.freedesktop.org/libdrm/";
|
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
|
license = "bsd";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|