https://github.com/multirious/bevy_cli_flake
Flake for a Bevy CLI and linter
https://github.com/multirious/bevy_cli_flake
Last synced: 9 months ago
JSON representation
Flake for a Bevy CLI and linter
- Host: GitHub
- URL: https://github.com/multirious/bevy_cli_flake
- Owner: Multirious
- Created: 2025-09-09T13:35:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-09T15:49:21.000Z (10 months ago)
- Last Synced: 2025-09-09T16:38:33.300Z (10 months ago)
- Language: Nix
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bevy_cli_flake
This is my flake rendition of the Bevy CLI with support for linter.
# devshells
```nix
{
description = "A devShell example";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
bevy_cli_flake = {
url = "github:Multirious/bevy_cli_flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { flake-utils, ... } @ inputs:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = with pkgs; mkShell {
buildInputs = [
inputs.bevy_cli_flake.packages."${system}".default
];
};
}
);
}
```