Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 562 Bytes

File metadata and controls

19 lines (14 loc) · 562 Bytes

nix-godot-android

A nix flake that wrap Godot with the Android runtime and Gradle (VR ready).

usage

Create a file flake.nix at the root of your project, you can then enter the development environment using nix develop.

{
  description = "Example usage of nix-godot-android";
  inputs.nix-godot-android.url = "github:jahkosha/nix-godot-android";
  inputs.nixpkgs.url = "nixpkgs/nixos-unstable";

  outputs = { self, nixpkgs, nix-godot-android }: {
    devShells.x86_64-linux.default = nix-godot-android.devShells.x86_64-linux.default;
  };
}