nix: Enabled tooling with cargo2nix #41

Open
jpds wants to merge 2 commits from jpds/nix-tooling into main
jpds commented 2024-03-17 16:58:56 +00:00 (Migrated from github.com)

I did this as part of the testing for the LTO change and just making it easier to do builds across my laptop and test server.

Basically, one just needs to install Nix on their machine: https://zero-to-nix.com/start/install

...and then instead of developers having to bootstrap their own Rust (in this case)/C++/Python/JavaScript toolchains on their systems, they just run:

nix build

...the tool then fetches the required (and pinned) toolchain and performs the build of the project.

Debug builds can be done with:

nix develop # spawns a temporary shell session with the required tooling added
cargo build
cargo test

Just a thought as people mentioned that developer speed was important.

I did this as part of the testing for the LTO change and just making it easier to do builds across my laptop and test server. Basically, one just needs to install Nix on their machine: https://zero-to-nix.com/start/install ...and then instead of developers having to bootstrap their own Rust (in this case)/C++/Python/JavaScript toolchains on their systems, they just run: ``` nix build ``` ...the tool then fetches the required (and pinned) toolchain and performs the build of the project. Debug builds can be done with: ``` nix develop # spawns a temporary shell session with the required tooling added cargo build cargo test ``` Just a thought as people mentioned that developer speed was important.
This pull request has changes conflicting with the target branch.
  • Cargo.lock
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin jpds/nix-tooling:jpds/nix-tooling
git checkout jpds/nix-tooling

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git checkout main
git merge --no-ff jpds/nix-tooling
git checkout jpds/nix-tooling
git rebase main
git checkout main
git merge --ff-only jpds/nix-tooling
git checkout jpds/nix-tooling
git rebase main
git checkout main
git merge --no-ff jpds/nix-tooling
git checkout main
git merge --squash jpds/nix-tooling
git checkout main
git merge --ff-only jpds/nix-tooling
git checkout main
git merge jpds/nix-tooling
git push origin main
Sign in to join this conversation.
No description provided.