a241abf603
This reverts commit a5f4e22289
.
Breaks the stdenv build, e.g.: http://hydra.nixos.org/build/50015717
In general, the architectures are different enough that there is no
reason to consider both as ARM, just like we don't consider x86_64 as
32-bit x86.
cc @fpletz
35 lines
1.2 KiB
Nix
35 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdrm-2.4.75";
|
|
|
|
src = fetchurl {
|
|
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
|
|
sha256 = "2d5a500eef412cc287d12268eed79d571e262d4957a2ec9258073f305985054f";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libpthreadstubs libpciaccess ];
|
|
# libdrm as of 2.4.70 does not actually do anything with udev.
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./libdrm-apple.patch;
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin
|
|
"echo : \\\${ac_cv_func_clock_gettime=\'yes\'} > config.cache";
|
|
|
|
configureFlags = [ "--disable-valgrind" ]
|
|
++ stdenv.lib.optionals (stdenv.isArm || stdenv.isAarch64) [ "--enable-tegra-experimental-api" "--enable-etnaviv-experimental-api" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin "-C";
|
|
|
|
crossAttrs.configureFlags = configureFlags ++ [ "--disable-intel" ];
|
|
|
|
meta = {
|
|
homepage = http://dri.freedesktop.org/libdrm/;
|
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
|
license = "bsd";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|