mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
f277070801
- Gather all the sources in a same expression under sources.nix - Doc-comment and rename the patch - strictDeps is set as true - Why extra-cmake-modules does not work in nativeBuildInputs?? - Add myself as maintainer
65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
pcsx2,
|
|
shaderc,
|
|
}:
|
|
|
|
{
|
|
pcsx2 = let
|
|
self = {
|
|
pname = "pcsx2";
|
|
version = "1.7.5919";
|
|
src = fetchFromGitHub {
|
|
owner = "PCSX2";
|
|
repo = "pcsx2";
|
|
rev = "v${self.version}";
|
|
hash = "sha256-cDugEbbz40uLPW64bcDGxfo1Y3ahYnEVaalfMp/J95s=";
|
|
};
|
|
};
|
|
in
|
|
self;
|
|
|
|
# The pre-zipped files in releases don't have a versioned link, we need to zip
|
|
# them ourselves
|
|
pcsx2_patches = {
|
|
pname = "pcsx2_patches";
|
|
version = "0-unstable-2024-06-23";
|
|
src = fetchFromGitHub {
|
|
owner = "PCSX2";
|
|
repo = "pcsx2_patches";
|
|
rev = "9e71956797332471010e563a4b75a5934bef9d4e";
|
|
hash = "sha256-jpaRpvJox78zRGyrVIGYVoSEo/ICBlBfw3dTMz9QGuU=";
|
|
};
|
|
};
|
|
|
|
shaderc-patched = let
|
|
pname = "shaderc-patched-for-pcsx2";
|
|
version = "2024.1";
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "shaderc";
|
|
rev = "v${version}";
|
|
hash = "sha256-2L/8n6KLVZWXt6FrYraVlZV5YqbPHD7rzXPCkD0d4kg=";
|
|
};
|
|
in
|
|
shaderc.overrideAttrs (old: {
|
|
inherit pname version src;
|
|
patches = (old.patches or [ ]) ++ [
|
|
(fetchpatch {
|
|
url = "file://${pcsx2.src}/.github/workflows/scripts/common/shaderc-changes.patch";
|
|
hash = "sha256-/qX2yD0RBuPh4Cf7n6OjVA2IyurpaCgvCEsIX/hXFdQ=";
|
|
excludes = [
|
|
"libshaderc/CMakeLists.txt"
|
|
"third_party/CMakeLists.txt"
|
|
];
|
|
})
|
|
];
|
|
cmakeFlags = (old.cmakeFlags or [ ]) ++ [
|
|
(lib.cmakeBool "SHADERC_SKIP_EXAMPLES" true)
|
|
(lib.cmakeBool "SHADERC_SKIP_TESTS" true)
|
|
];
|
|
});
|
|
}
|