-
Notifications
You must be signed in to change notification settings - Fork 33
barebones flake.nix #532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
barebones flake.nix #532
Changes from 3 commits
6ccf442
54e738d
04e8675
0feb7ed
1ae6f87
4c24f51
071c4f1
3e0d88e
0fd9ed8
3c32ece
eddc831
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| { | ||
| description = "A Bevy CLI tool and linter"; | ||
|
|
||
| inputs = { | ||
| flake-utils.url = "github:numtide/flake-utils"; | ||
| nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | ||
| }; | ||
|
|
||
| outputs = { self, flake-utils, nixpkgs }: | ||
| flake-utils.lib.eachDefaultSystem ( | ||
| system: | ||
| let | ||
| pkgs = nixpkgs.legacyPackages.${system}; | ||
|
|
||
| nativeBuildInputs = with pkgs; [ | ||
| pkg-config | ||
| ]; | ||
|
|
||
| buildInputs = with pkgs; [ | ||
| openssl | ||
| # rustup | ||
CupOfTeaJay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ]; | ||
| in | ||
| { | ||
| packages.default = pkgs.rustPlatform.buildRustPackage { | ||
|
||
| pname = "bevy_cli"; | ||
CupOfTeaJay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| version = "0.1.0-dev"; | ||
| src = ./.; | ||
| cargoLock = { | ||
| lockFile = ./Cargo.lock; | ||
| }; | ||
| doCheck = false; | ||
| inherit buildInputs nativeBuildInputs; | ||
| }; | ||
|
|
||
| devShells.default = pkgs.mkShell { | ||
| inherit buildInputs nativeBuildInputs; | ||
| }; | ||
| } | ||
| ); | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, I've tested out your PR and you just need to make a few changes to make
bevy lintwork:A few important points:
bevy_lintrequires the nightly compiler, so we need to pull in a community-maintained overlay sincenixpkgsdoesn't provide one. Therust-toolchain.tomlfrom the repo is used here, so we'll never go out-of-sync. See the official manual for details.We can't expect
rustupto be available on NixOS systems, so we need to pointBEVY_LINT_SYSROOTto the same nightly toolchain used to build the linter.cargoBuildFlags = [ "--all" ];This just builds all the packages in the workspace so that we get both
bevyandbevy_lint. Is it worth it to be more specific?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does setting BEVY_LINT_SYSROOT for the bevy cli (not the bevy_lint cli) do anything, or should it be set for only bevy_cli?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Bevy CLI doesn't read
BEVY_LINT_SYSROOT, but if you run the linter through the CLI (such as withbevy lint web, for example), you'll still wantBEVY_LINT_SYSROOTto be set. Check out the docs on environmental variables for more details. :)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes should be applied now