about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorPhilip Kranz <pk@pmlk.net>2024-01-24 22:08:03 +0100
committerPhilip Kranz <pk@pmlk.net>2024-01-24 22:15:29 +0100
commit214229b26dbf2c05bf0cfa679bbd0c06c479bb76 (patch)
tree7a4130770e12f17ec1bfd7ae9730881b2b265c2d /pkgs/applications/emulators
parent57ffca844737585a23d503f60e82fc36df11ad23 (diff)
retroarch: Fix wrapper arguments in mkLibretroCore
Fixes a bug where the wrapper would always append a parameter
"installPhase".
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/retroarch/mkLibretroCore.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/emulators/retroarch/mkLibretroCore.nix b/pkgs/applications/emulators/retroarch/mkLibretroCore.nix
index bc457d0cb702f..7523288bd28d0 100644
--- a/pkgs/applications/emulators/retroarch/mkLibretroCore.nix
+++ b/pkgs/applications/emulators/retroarch/mkLibretroCore.nix
@@ -63,7 +63,7 @@ stdenv.mkDerivation ({
 
     install -Dt ${coreDir} ${coreFilename}
     makeWrapper ${retroarch}/bin/retroarch $out/bin/${mainProgram} \
-      --add-flags "-L ${coreDir}/${coreFilename} $@"
+      --add-flags "-L ${coreDir}/${coreFilename}"
 
     runHook postInstall
   '';