summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsidor Zeuner <nix@quidecco.pl>2023-10-04 18:26:55 +0200
committerIsidor Zeuner <nix@quidecco.pl>2023-10-04 18:26:55 +0200
commitfe330c57da8bdd986571071fc606c937163f9f25 (patch)
tree91ba60507d42c77533171add31292df0f57df06e
parentMerge pull request #257445 from bobby285271/fix/hypnotix (diff)
downloadnixpkgs-fe330c57da8bdd986571071fc606c937163f9f25.tar.gz
retroarchFull: fix pcsx2 core installation
-rw-r--r--pkgs/applications/emulators/retroarch/cores.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/emulators/retroarch/cores.nix b/pkgs/applications/emulators/retroarch/cores.nix
index d67ae6b5318e..d1cbf12b34d0 100644
--- a/pkgs/applications/emulators/retroarch/cores.nix
+++ b/pkgs/applications/emulators/retroarch/cores.nix
@@ -768,7 +768,7 @@ in
# causes redefinition of _FORTIFY_SOURCE
hardeningDisable = [ "fortify3" ];
- postBuild = "cd /build/source/build/pcsx2";
+ postBuild = "cd $NIX_BUILD_TOP/source/build/pcsx2";
meta = {
description = "Port of PCSX2 to libretro";
license = lib.licenses.gpl3Plus;