mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
c40d1d80ac
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. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.4.91 with grep in /nix/store/rff4bpz0j9w5fgxsd5qq1vdv5wpdlwxy-libdrm-2.4.91 - directory tree listing: https://gist.github.com/c13751993f64b3543f93979f9450e5d1
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind-light }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdrm-2.4.91";
|
|
|
|
src = fetchurl {
|
|
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
|
|
sha256 = "0068dn47c478vm1lyyhy02gilrpsma0xmcblhvs0dzqyrk80wjk3";
|
|
};
|
|
|
|
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;
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin
|
|
"echo : \\\${ac_cv_func_clock_gettime=\'yes\'} > config.cache";
|
|
|
|
configureFlags = [ "--enable-install-test-programs" ]
|
|
++ 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 = https://dri.freedesktop.org/libdrm/;
|
|
description = "Library for accessing the kernel's Direct Rendering Manager";
|
|
license = "bsd";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|