Pkgs/kame-editor: add required programs to wrapper path

This commit is contained in:
Toast 2025-11-15 18:56:36 +01:00
parent 0bfe20a736
commit 85b1605ea9

View file

@ -1,4 +1,5 @@
{ {
lib,
stdenv, stdenv,
fetchFromGitLab, fetchFromGitLab,
qt6, qt6,
@ -27,12 +28,17 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
qt6.qtbase qt6.qtbase
portaudio portaudio
kame-tools
vgmstream
rstmcpp
]; ];
dontStrip = true; qtWrapperArgs = [
"--prefix PATH : ${
lib.makeBinPath [
kame-tools
vgmstream
rstmcpp
]
}"
];
nativeBuildInputs = [ nativeBuildInputs = [
qt6.qmake qt6.qmake