Skip to content

Commit

Permalink
retroarch: use makeBinaryWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Nov 24, 2024
1 parent 50c7be1 commit 600ffd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkgs/by-name/re/retroarch-bare/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
libxkbcommon,
libxml2,
libXxf86vm,
makeWrapper,
makeBinaryWrapper,
mbedtls_2,
mesa,
nixosTests,
Expand Down Expand Up @@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkg-config
qt5.wrapQtAppsHook
] ++ lib.optional withWayland wayland ++ lib.optional (runtimeLibs != [ ]) makeWrapper;
] ++ lib.optional withWayland wayland ++ lib.optional (runtimeLibs != [ ]) makeBinaryWrapper;

buildInputs =
[
Expand Down Expand Up @@ -155,7 +155,7 @@ stdenv.mkDerivation rec {
inherit
lib
libretro
makeWrapper
makeBinaryWrapper
retroarch-bare
runCommand
symlinkJoin
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/re/retroarch-bare/wrapper.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
lib,
libretro,
makeWrapper,
makeBinaryWrapper,
retroarch-bare,
runCommand,
symlinkJoin,
Expand Down Expand Up @@ -41,7 +41,7 @@ symlinkJoin {

paths = [ retroarch-bare ] ++ cores;

nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeBinaryWrapper ];

passthru = {
inherit cores;
Expand Down

0 comments on commit 600ffd1

Please sign in to comment.