qmplay2: 24.06.16 -> 25.01.19

This commit is contained in:
emaryn 2025-06-07 16:45:18 +08:00
parent 957a604194
commit 82748eb1c2
2 changed files with 10 additions and 7 deletions

View file

@ -1,5 +1,6 @@
{
lib,
stdenv,
alsa-lib,
callPackage,
cmake,
@ -19,7 +20,6 @@
pkg-config,
qt5,
qt6,
stdenv,
taglib,
vulkan-headers,
vulkan-tools,
@ -43,6 +43,8 @@ stdenv.mkDerivation (finalAttrs: {
cp -va ${sources.qmvk.src}/* qmvk/
chmod --recursive 744 qmvk
popd
substituteInPlace src/qmplay2/vulkan/VulkanWindow.cpp \
--replace-fail "getSubmitInfo()" "getSubmitInfo(0)"
'';
nativeBuildInputs =

View file

@ -5,13 +5,14 @@
let
self = {
pname = "qmplay2";
version = "24.06.16";
version = "25.01.19";
src = fetchFromGitHub {
owner = "zaps166";
repo = "QMPlay2";
rev = self.version;
hash = "sha256-HoFyC/OFmthUYfyo6//+KmBIq06MPb5GmDekJbnsz5o=";
tag = self.version;
hash = "sha256-Of/zEQ6o2J/wXfAoY10IPtCaMaSk8ux8L6MrimeMWVA=";
fetchSubmodules = true;
};
};
in
@ -19,13 +20,13 @@
qmvk = {
pname = "qmvk";
version = "0-unstable-2024-04-19";
version = "0-unstable-2025-06-05";
src = fetchFromGitHub {
owner = "zaps166";
repo = "QmVk";
rev = "5c5c2942255820b6343afdfeea0405cd3b36870e";
hash = "sha256-viFM9N5PiSCgkGlxtrLFCVDIML/QyPiaPRX77RW2NNw=";
rev = "754e6ca4b65433cb500a797e86d48d899d5a41c2";
hash = "sha256-t4fGIfZhZE8ShQGa1zMJLpnvCEfCdCeAWOKwF4+nFSw=";
};
};
}