Skip to content

Commit 59597d0

Browse files
committed
Update binary naming
Update the copy command in package.nix to match the output binary names.
1 parent 4182cb5 commit 59597d0

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

flake.nix

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@
2828
pkgs,
2929
}:
3030
{
31-
default =
32-
pkgs.callPackage ./package.nix
33-
{
34-
};
31+
default = pkgs.callPackage ./package.nix {
32+
};
3533
}
3634
);
3735
devShells = forEachSupportedSystem (

package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ stdenv.mkDerivation {
9494
installPhase = ''
9595
runHook preInstall
9696
mkdir -p "$out/bin"
97-
cp bin/godot.* $out/bin/redot
97+
cp bin/redot*.* $out/bin/redot
9898
9999
runHook postInstall
100100
'';

0 commit comments

Comments
 (0)