Skip to content

Commit

Permalink
chore: Edited some example
Browse files Browse the repository at this point in the history
  • Loading branch information
haruki7049 committed Mar 31, 2024
1 parent 65444ac commit bd375c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let
in
pkgs.mkShell {
packages = with pkgs; [
godot-mono-bin.${godotVersion}
godot-bin.mono.${godotVersion}
dotnet-sdk
];
}
Expand All @@ -38,7 +38,7 @@ pkgs.mkShell {
{
devShells."x86_64-linux".default = pkgs.mkShell {
packages = with pkgs; [
godot-mono-bin."4.2.1"
godot-bin.mono."4.2.1"
dotnet-sdk
];
Expand Down
2 changes: 1 addition & 1 deletion example/nix-flake/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
};
in {
devShells."x86_64-linux".default = pkgs.mkShell {
packages = with pkgs; [ godot-mono-bin."4.2.1" dotnet-sdk ];
packages = with pkgs; [ godot-bin.mono."4.2.1" dotnet-sdk ];

shellHook = ''
export PS1="\n[nix-shell:\w]$ "
Expand Down
4 changes: 2 additions & 2 deletions example/shell-nix/shell.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
let
godot_overlay = import (builtins.fetchTarball
"https://github.com/haruki7049/godot-overlay/archive/a5606dd90455212059c58f79973a356bf6b80627.tar.gz");
"https://github.com/haruki7049/godot-overlay/archive/65444ac1403370d6d657a5e7edeccec07ff406ef.tar.gz");
godotVersion = "4.2.1";
pkgs = import (builtins.fetchTarball
"https://github.com/NixOS/nixpkgs/archive/057f9aecfb71c4437d2b27d3323df7f93c010b7e.tar.gz") {
overlays = [ godot_overlay ];
};
in pkgs.mkShell {
packages = with pkgs; [ godot-mono-bin.${godotVersion} dotnet-sdk ];
packages = with pkgs; [ godot-bin.mono.${godotVersion} dotnet-sdk ];
}

0 comments on commit bd375c3

Please sign in to comment.