4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, writeText, vulkan-headers, jq }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vulkan-extension-layer";
|
|
version = "2020-11-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "Vulkan-ExtensionLayer";
|
|
rev = "7474cb8e1f70e9f4a8bf382708a7f15465453af5";
|
|
sha256 = "1lxkgcnv32wqk4hlckv13xy84g38jzgc4qxp9vsbkrgz87hkdvwj";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake jq ];
|
|
|
|
buildInputs = [ vulkan-headers ];
|
|
|
|
# Help vulkan-loader find the validation layers
|
|
setupHook = writeText "setup-hook" ''
|
|
export XDG_DATA_DIRS=@out@/share:$XDG_DATA_DIRS
|
|
'';
|
|
|
|
# Include absolute paths to layer libraries in their associated
|
|
# layer definition json files.
|
|
preFixup = ''
|
|
for f in "$out"/share/vulkan/explicit_layer.d/*.json "$out"/share/vulkan/implicit_layer.d/*.json; do
|
|
jq <"$f" >tmp.json ".layer.library_path = \"$out/lib/\" + .layer.library_path"
|
|
mv tmp.json "$f"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Layers providing Vulkan features when native support is unavailable";
|
|
homepage = "https://github.com/KhronosGroup/Vulkan-ExtensionLayer/";
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ expipiplus1 ];
|
|
};
|
|
}
|