mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
7362394cef
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdrm/versions
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind-light }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdrm-2.4.96";
|
|
|
|
src = fetchurl {
|
|
url = "https://dri.freedesktop.org/libdrm/${name}.tar.bz2";
|
|
sha256 = "14xkip83qgljjaahzq40qgl60j54q7k00la1hbf5kk5lgg7ilmhd";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "bin" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libpthreadstubs libpciaccess valgrind-light ];
|
|
# libdrm as of 2.4.70 does not actually do anything with udev.
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./libdrm-apple.patch;
|
|
|
|
postPatch = ''
|
|
for a in */*-symbol-check ; do
|
|
patchShebangs $a
|
|
done
|
|
'';
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin
|
|
"echo : \\\${ac_cv_func_clock_gettime=\'yes\'} > config.cache";
|
|
|
|
configureFlags = [ "--enable-install-test-programs" ]
|
|
++ stdenv.lib.optionals (stdenv.isAarch32 || stdenv.isAarch64)
|
|
[ "--enable-tegra-experimental-api" "--enable-etnaviv-experimental-api" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin "-C"
|
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-intel"
|
|
;
|
|
|
|
meta = {
|
|
homepage = https://dri.freedesktop.org/libdrm/;
|
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
|
license = "bsd";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|