mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-01 18:40:57 -06:00
Ensure that the name is applicable to the current project.
.
This commit is contained in:
parent
c20fdfd5e2
commit
6cff1c065c
11
flake.nix
11
flake.nix
@ -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 = ''
|
||||
|
||||
Loading…
Reference in New Issue
Block a user