nixpkgs/pkgs/development/libraries/amdvlk/default.nix

95 lines
2.0 KiB
Nix
Raw Normal View History

2020-03-11 06:57:33 +00:00
{ stdenv
, lib
, fetchRepoProject
, cmake
, ninja
, patchelf
, perl
, pkgconfig
, python3
, expat
, libdrm
, ncurses
, openssl
, wayland
, xorg
, zlib
}:
2020-07-21 15:58:30 +01:00
let
2020-03-11 06:57:33 +00:00
2020-07-21 15:58:30 +01:00
suffix = if stdenv.system == "x86_64-linux" then "64" else "32";
in stdenv.mkDerivation rec {
2020-03-11 06:57:33 +00:00
pname = "amdvlk";
2020-12-15 13:56:14 +00:00
version = "2020.Q4.6";
2020-03-11 06:57:33 +00:00
src = fetchRepoProject {
name = "${pname}-src";
manifest = "https://github.com/GPUOpen-Drivers/AMDVLK.git";
rev = "refs/tags/v-${version}";
2020-12-15 13:56:14 +00:00
sha256 = "wminJxfku8Myag+SI7iLSvS+VzHlUd4c86BbpF/cr1w=";
2020-03-11 06:57:33 +00:00
};
buildInputs = [
expat
ncurses
openssl
wayland
xorg.libX11
xorg.libxcb
xorg.xcbproto
xorg.libXext
xorg.libXrandr
xorg.libXft
xorg.libxshmfence
zlib
];
nativeBuildInputs = [
cmake
ninja
patchelf
perl
pkgconfig
python3
];
rpath = lib.makeLibraryPath [
libdrm
openssl
2020-03-11 06:57:33 +00:00
stdenv.cc.cc.lib
xorg.libX11
xorg.libxcb
xorg.libxshmfence
];
cmakeDir = "../drivers/xgl";
2020-07-21 15:58:30 +01:00
# LTO is disabled in gcc for i686 as of #66528
cmakeFlags = stdenv.lib.optionals stdenv.is32bit ["-DXGL_ENABLE_LTO=OFF"];
2020-03-11 06:57:33 +00:00
installPhase = ''
2020-07-21 15:58:30 +01:00
install -Dm755 -t $out/lib icd/amdvlk${suffix}.so
install -Dm644 -t $out/share/vulkan/icd.d ../drivers/AMDVLK/json/Redhat/amd_icd${suffix}.json
2020-03-11 06:57:33 +00:00
2020-07-21 15:58:30 +01:00
substituteInPlace $out/share/vulkan/icd.d/amd_icd${suffix}.json --replace \
2020-03-11 06:57:33 +00:00
"/usr/lib64" "$out/lib"
2020-07-21 15:58:30 +01:00
substituteInPlace $out/share/vulkan/icd.d/amd_icd${suffix}.json --replace \
"/usr/lib" "$out/lib"
2020-03-11 06:57:33 +00:00
2020-07-21 15:58:30 +01:00
patchelf --set-rpath "$rpath" $out/lib/amdvlk${suffix}.so
2020-03-11 06:57:33 +00:00
'';
# Keep the rpath, otherwise vulkaninfo and vkcube segfault
dontPatchELF = true;
meta = with stdenv.lib; {
description = "AMD Open Source Driver For Vulkan";
homepage = "https://github.com/GPUOpen-Drivers/AMDVLK";
2020-08-08 11:18:21 +01:00
changelog = "https://github.com/GPUOpen-Drivers/AMDVLK/releases/tag/v-${version}";
2020-03-11 06:57:33 +00:00
license = licenses.mit;
2020-07-21 15:58:30 +01:00
platforms = [ "x86_64-linux" "i686-linux" ];
2020-08-08 11:44:58 +01:00
maintainers = with maintainers; [ danieldk Flakebi ];
2020-03-11 06:57:33 +00:00
};
}