Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nix: Use packages instead of buildInputs
In practice, `packages` sets the value for `nativeBuildInputs`. This has the following advantages: - `buildInputs` is for runtime dependencies. `nativeBuildInputs` is for build dependencies (this usually not an issue unless cross compiling) - `shellHook`s will actually run, allowing packages to safely append to variables like `XDG_DATA_DIRS` - It's more idiomatic and how it's recommended to be used in the docs
- Loading branch information