mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
f66076f374
Diff: PCSX2/pcsx2@v1.7.5587...v1.7.5779
21 lines
445 B
Nix
21 lines
445 B
Nix
{
|
|
fetchpatch,
|
|
pcsx2,
|
|
shaderc,
|
|
}:
|
|
|
|
shaderc.overrideAttrs (old: {
|
|
pname = "shaderc-patched-for-pcsx2";
|
|
patches = (old.patches or [ ]) ++ [
|
|
(fetchpatch {
|
|
url = "file://${pcsx2.src}/.github/workflows/scripts/common/shaderc-changes.patch";
|
|
hash = "sha256-Ps/D+CdSbjVWg3ZGOEcgbpQbCNkI5Nuizm4E5qiM9Wo=";
|
|
excludes = [
|
|
"CHANGES"
|
|
"CMakeLists.txt"
|
|
"libshaderc/CMakeLists.txt"
|
|
];
|
|
})
|
|
];
|
|
})
|