with import <nixpkgs> {};
appimageTools.wrapType2 {
name = "upscayl";
src = fetchurl {
url = "https://github.com/upscayl/upscayl/releases/download/v1.5.0/Upscayl-1.5.0.AppImage";
sha256 = "0Yes81reZQyDtubPDhLO0LFPjGfbnvstJOm919gfxjk=";
};
extraPkgs = pkgs: with pkgs; [ vulkan-headers];
}
This works fine until I try to actually upscale an image then I get the following error message:
upscayl.stderr.on => stderr.toString() /nix/store/g2v78yl50q73zvmls6fwl0rpnvwiz18p-upscayl-extracted/resources/bin/upscayl-realesrgan: error while loading shared libraries: libvulkan.so.1: cannot open shared object file: No such file or directory
It seems like it cant find the vulkan headers and I don’t know how to fix it.