Skip to content

Commit 600ffd1

Browse files
committed
retroarch: use makeBinaryWrapper
1 parent 50c7be1 commit 600ffd1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pkgs/by-name/re/retroarch-bare/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
libxkbcommon,
2222
libxml2,
2323
libXxf86vm,
24-
makeWrapper,
24+
makeBinaryWrapper,
2525
mbedtls_2,
2626
mesa,
2727
nixosTests,
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
7070
nativeBuildInputs = [
7171
pkg-config
7272
qt5.wrapQtAppsHook
73-
] ++ lib.optional withWayland wayland ++ lib.optional (runtimeLibs != [ ]) makeWrapper;
73+
] ++ lib.optional withWayland wayland ++ lib.optional (runtimeLibs != [ ]) makeBinaryWrapper;
7474

7575
buildInputs =
7676
[
@@ -155,7 +155,7 @@ stdenv.mkDerivation rec {
155155
inherit
156156
lib
157157
libretro
158-
makeWrapper
158+
makeBinaryWrapper
159159
retroarch-bare
160160
runCommand
161161
symlinkJoin

pkgs/by-name/re/retroarch-bare/wrapper.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
lib,
33
libretro,
4-
makeWrapper,
4+
makeBinaryWrapper,
55
retroarch-bare,
66
runCommand,
77
symlinkJoin,
@@ -41,7 +41,7 @@ symlinkJoin {
4141

4242
paths = [ retroarch-bare ] ++ cores;
4343

44-
nativeBuildInputs = [ makeWrapper ];
44+
nativeBuildInputs = [ makeBinaryWrapper ];
4545

4646
passthru = {
4747
inherit cores;

0 commit comments

Comments
 (0)