-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Vulkan packages #55959
Update Vulkan packages #55959
Conversation
cc @alyssais |
Why the ping, sorry? |
This attempts to address the stability issues we previously discussed in #51672. |
I'd do it like this:
|
The stable releases of spirv-* aren't used by the stable release of glslang. If we override them within glslang's expression, then downstream packages which need different overrides break, and it's not clear to me how to write a wrapper expression that's better than what I've already got here. |
Any thoughts? Was hoping to get this in for 19.03. |
If we override them within glslang's expression, then downstream packages which need different overrides break
Can you expand on this?
|
If the glslang expression looks like: { spirv-headers, ... }:
let spirv-headers = spirv-headers.overrideAttrs (...);
... then a caller cannot usefully do glslang.override { spirv-headers = spirv-headers.overrideAttrs (...); } because the override will be clobbered inside glslang's expression. Unfortunately, the stable version of spirv-*, the versions of spirv-* used by the stable version of glslang itself, and the versions of spirv-* used with glslang by packages that depend on glslang are all different. |
One option would be to pass the necessary overridden dependencies in from all-packages.nix; this would be unconventional, and take up a lot more space in an already-massive file, but it'd allow for a more conventional structure. |
The latest commit fixes a regression I discovered that's present in master (and presumably 19.03). It can be easily worked around by depending on |
One option would be to pass the necessary overridden dependencies in from all-packages.nix; this would be unconventional, and take up a lot more space in an already-massive file, but it'd allow for a more conventional structure.
Could you post an example of what exactly that would look like?
I think it sounds promising.
|
In all-packages.nix: glslang = callPackage ../development/compilers/glslang {
spirv-tools = spirv-tools.overrideAttrs (_: {
src = fetchFromGitHub { ... };
});
spirv-headers = spirv-tools.overrideAttrs (_: {
src = fetchFromGitHub { ... };
});
}; Then glslang/default.nix would be totally conventional. |
I think this might be the way to go. I'll give others a chance to
disagree before merging anything like that, though.
|
Drafted the proposed changes, and further bumped the versions while I was at it. |
Is this blocked? |
These now live in vulkan-headers.
As discussed with @Ralith on IRC, I don't think we need to include these headers just for backwards compatibility. They were removed from |
Motivation for this change
This brings us up to the latest loader/tools/validation layers, and switches from git builds to stable releases for glslang and spirv-tools.
glslang is handled a bit oddly because it has three different sources, all of which must be overridden simultaneously by e.g. vulkan-validation-layers. I'd prefer to do this in a way that uses the
overrideAttrs
pattern and doesn't force callers to invokecallPackage
and thereby complicate overriding dependencies, but it's not clear to me how to do that.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)