Pkgs/kame-editor: add required programs to wrapper path
This commit is contained in:
parent
0bfe20a736
commit
85b1605ea9
1 changed files with 10 additions and 4 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchFromGitLab,
|
fetchFromGitLab,
|
||||||
qt6,
|
qt6,
|
||||||
|
|
@ -27,13 +28,18 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qt6.qtbase
|
qt6.qtbase
|
||||||
portaudio
|
portaudio
|
||||||
|
];
|
||||||
|
|
||||||
|
qtWrapperArgs = [
|
||||||
|
"--prefix PATH : ${
|
||||||
|
lib.makeBinPath [
|
||||||
kame-tools
|
kame-tools
|
||||||
vgmstream
|
vgmstream
|
||||||
rstmcpp
|
rstmcpp
|
||||||
|
]
|
||||||
|
}"
|
||||||
];
|
];
|
||||||
|
|
||||||
dontStrip = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
qt6.qmake
|
qt6.qmake
|
||||||
qt6.wrapQtAppsHook
|
qt6.wrapQtAppsHook
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue