forked from mirrors/nixpkgs
8b9b9fad31
Revert a revert of a merge that shouldn't have been in master but was intentionally in staging.
Next time I'll do this right after the revert instead of so far down the line...
This reverts commit 9adad8612b
.
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, udev, valgrind }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdrm-2.4.70";
|
|
|
|
src = fetchurl {
|
|
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
|
|
sha256 = "b17d4b39ed97ca0e4cffa0db06ff609e617bac94646ec38e8e0579d530540e7b";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libpthreadstubs libpciaccess ]
|
|
++ stdenv.lib.optional stdenv.isLinux 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 = [ "--enable-freedreno" "--disable-valgrind" ]
|
|
++ stdenv.lib.optional stdenv.isLinux "--enable-udev"
|
|
++ 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";
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|