Nix expr: Use correct path for libgdiplus, fixes testroms projects
fixes e8a3b7b25
This commit is contained in:
parent
7c4f997f88
commit
39a52105e9
|
@ -63,8 +63,13 @@
|
||||||
'';
|
'';
|
||||||
dontFixup = true;
|
dontFixup = true;
|
||||||
};
|
};
|
||||||
genDepsHostTargetFor = { hawkSourceInfo, mono' ? mono }: [ libgdiplus lua mono' openal (lib.getOutput "out" zstd) ]
|
genDepsHostTargetFor = { hawkSourceInfo, mono' ? mono }: [
|
||||||
++ lib.optionals hawkSourceInfo.needsSDL [ SDL2 (lib.getOutput "out" udev) ]
|
(lib.getOutput "out" libgdiplus)
|
||||||
|
lua
|
||||||
|
mono'
|
||||||
|
openal
|
||||||
|
(lib.getOutput "out" zstd)
|
||||||
|
] ++ lib.optionals hawkSourceInfo.needsSDL [ SDL2 (lib.getOutput "out" udev) ]
|
||||||
++ lib.optional hawkSourceInfo.needsLibGLVND (lib.getOutput "out" libGL);
|
++ lib.optional hawkSourceInfo.needsLibGLVND (lib.getOutput "out" libGL);
|
||||||
/**
|
/**
|
||||||
* see splitReleaseArtifact re: outputs
|
* see splitReleaseArtifact re: outputs
|
||||||
|
|
Loading…
Reference in New Issue