Files
nixpkgs/pkgs/development/libraries/libdrm/default.nix
T

35 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind-light }:
2005-11-01 20:27:57 +00:00
stdenv.mkDerivation rec {
2017-05-27 09:54:20 +02:00
name = "libdrm-2.4.81";
2013-02-23 12:07:19 +01:00
2005-11-01 20:27:57 +00:00
src = fetchurl {
2009-04-20 18:09:15 +00:00
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
2017-05-27 09:54:20 +02:00
sha256 = "8cc05c195ac8708199979a94c4e4d1a928c14ec338ecbcb38ead09f54dae11ae";
2008-10-08 17:02:48 +00:00
};
2016-08-29 03:30:01 +03:00
outputs = [ "out" "dev" ];
2013-08-23 09:54:18 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpthreadstubs libpciaccess valgrind-light ];
2016-09-05 17:59:21 +02:00
# libdrm as of 2.4.70 does not actually do anything with udev.
2009-04-20 18:43:08 +00:00
patches = stdenv.lib.optional stdenv.isDarwin ./libdrm-apple.patch;
2011-08-29 18:55:37 +00:00
preConfigure = stdenv.lib.optionalString stdenv.isDarwin
"echo : \\\${ac_cv_func_clock_gettime=\'yes\'} > config.cache";
configureFlags = [ ]
2017-03-11 15:54:24 +02:00
++ 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" ];
2008-10-08 17:02:48 +00:00
meta = {
homepage = http://dri.freedesktop.org/libdrm/;
description = "Library for accessing the kernel's Direct Rendering Manager";
2009-10-29 14:52:10 +00:00
license = "bsd";
2014-06-07 12:16:31 +00:00
platforms = stdenv.lib.platforms.unix;
2005-11-01 20:27:57 +00:00
};
}