We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4182cb5 commit 59597d0Copy full SHA for 59597d0
flake.nix
@@ -28,10 +28,8 @@
28
pkgs,
29
}:
30
{
31
- default =
32
- pkgs.callPackage ./package.nix
33
- {
34
- };
+ default = pkgs.callPackage ./package.nix {
+ };
35
}
36
);
37
devShells = forEachSupportedSystem (
package.nix
@@ -94,7 +94,7 @@ stdenv.mkDerivation {
94
installPhase = ''
95
runHook preInstall
96
mkdir -p "$out/bin"
97
- cp bin/godot.* $out/bin/redot
+ cp bin/redot*.* $out/bin/redot
98
99
runHook postInstall
100
'';
0 commit comments