Ensure that the name is applicable to the current project.

.
This commit is contained in:
Connor Garey 2026-03-30 14:19:43 +01:00
parent c20fdfd5e2
commit 6cff1c065c

View File

@ -75,8 +75,12 @@
'';
};
debugLinux = pkgsLinux.stdenv.mkDerivation {
pname = "shadps4";
debugLinux =
let
exec_name = "shadps4";
in
pkgsLinux.stdenv.mkDerivation {
pname = "${exec_name}";
version = "git";
system = "x86_64-linux";
src = ./.;
@ -142,9 +146,8 @@
];
in
''
wrapProgram $out/bin/vulkan-app \
wrapProgram $out/bin/${exec_name} \
--set LD_LIBRARY_PATH ${pkgsLinux.lib.makeLibraryPath libs} \
--set SHADER_PATH "$out/bin/shaders"
'';
#installPhase = ''