rust-overlay VS nixpkgs-mozilla

Compare rust-overlay vs nixpkgs-mozilla and see what are their differences.

rust-overlay

Pure and reproducible nix overlay of binary distributed rust toolchains (by oxalica)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
rust-overlay nixpkgs-mozilla
11 13
751 490
- 0.4%
9.5 5.9
7 days ago 4 months ago
Nix Nix
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

rust-overlay

Posts with mentions or reviews of rust-overlay. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-13.
  • Understanding Overlays and direnv nix shell inheritance
    1 project | /r/NixOS | 26 Nov 2023
    I'm trying to understand overlays in order to make a proper rustup install (I've read that this overlay is the best way to go).
  • Diving straight into flakes with no channels?
    14 projects | /r/NixOS | 13 Apr 2023
    real-world example: https://github.com/oxalica/rust-overlay/blob/master/flake.nix
  • An example providing rust toolchain for Linux/macOS using devenv.sh
    3 projects | /r/rust | 6 Dec 2022
    In this language context specifically, if one wanted to manage their workspace with Nix I would reach for Riff and/or oxalica/rust-overlay first, since they are deliberately more aware of Rust-specific nuance. In the latter's case it has compatibility paths with rustup-toolchain files as well, for allowing your peers who can't or won't adopt Nix to continue to feel like first-class participants in the project. Another alternative I don't have experience with would be nix-community/fenix.
  • Introducing Riff, a Nix-based tool for automatically providing external dependencies to Rust projects
    4 projects | /r/rust | 6 Sep 2022
    p.s. I'm not sure if it's mentioned much of anywhere, but it'd be neat if there was a way to figure out the appropriate cargo from a rust-toolchain/rust-toolchain.toml if present, ala https://github.com/oxalica/rust-overlay. Funnily enough 95% of my development time is in Rust, but I don't actually have it installed globally, fun times being a NixOS user. I'd definitely make the argument that cargo is an external dependency!
  • Have a few questions about NixOS
    5 projects | /r/NixOS | 31 May 2022
    Many of us have moved to https://github.com/oxalica/rust-overlay over Mozilla's overlay.
  • Rust Environment and Docker Build with Nix Flakes
    6 projects | dev.to | 18 May 2022
    We added rust-overlay, so we can easily specify different rust versions without relying on nixpkgs to give us what ever rust version in there.
  • Switching from pyenv, rbenv, goenv and nvm to asdf – yujinyuz
    20 projects | news.ycombinator.com | 5 Apr 2022
    If it's Rust, you can use https://github.com/oxalica/rust-overlay to get any version you want very easily without pinning an instance of nixpkgs just for it.

    asdf does not allow you to keep three different versions of the same language, so I'm not sure how that compares? It's not super-trivial to do in Nix, but at least you can do it.

    asdf is also no different than Nix when it comes to minor/major versions. You're at the mercy of what the plugin does, other than that you have to create your own plugin from scratch or make a fork. Nix has the option to patch things up more easily at least.

  • Fenix: rust toolchains for all channels and rust-analyzer nightly
    2 projects | /r/rust | 12 May 2021
    How does this compare to https://github.com/oxalica/rust-overlay/ ? Can fenix ingest a rust-toolchain file and provide packages from it?
    4 projects | /r/Nix | 12 May 2021
    Can you say a bit about how this compares to oxalica’s rust overlay?
  • What made you grok Nix language?
    1 project | /r/NixOS | 1 May 2021
    I frequently try to do something, say use (from the README of rust overlay):

nixpkgs-mozilla

Posts with mentions or reviews of nixpkgs-mozilla. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-02.
  • NixOS + SteamVR + OpenXR + Godot
    2 projects | /r/NixOS | 2 May 2023
    Do I know how to do this? No, but this real-world and the wiki might be places to start. I'll eventually have to figure this out myself so if I get around to that I'll post what I learn too
  • Installing firefox-nightly with overlays and home-manager?
    3 projects | /r/NixOS | 23 Apr 2023
    Is there a way to still keep it pure? From the nixpkgs-mozilla repo:
  • Annoucing fenix monthly, Rust toolchains updated 1st of every month
    3 projects | /r/NixOS | 1 Mar 2023
    Fenix provides the minimal, default, and complete profile of rust toolchains, latest profile of nightly toolchains, nightly version of rust analyzer and its vscode extension. It aims to be a replacement for rustup and the rust overlay provided by nixpkgs-mozilla.
  • Blog(ish): So I switched to Arch for a month...
    3 projects | /r/linux_gaming | 27 Jan 2023
    Firefox-nightly is maintained in the official nixpkgs-mozilla repo, so you're incorrect on that point. It's unreasonable to ask me to pick out examples for you, just to prove that numbers have actual meaning. However, feel free to peruse recently added packages and see which ones do and don't make their way to the AUR.
  • Have a few questions about NixOS
    5 projects | /r/NixOS | 31 May 2022
    4. I would suggest Mozilla's Rust overlay or fenix or similar instead of Rustup - that would be more of the "Nix-way" to acquire the toolchain and you can still manage multiple versions. Not sure what the Ruby equivalent is, I don't do Ruby.
  • Is NixOS a perfect tool for my task and should I learn it?
    1 project | /r/NixOS | 26 Mar 2022
    and for building software, I'd suggest using flakes for both the software repo and the system configuration, because then you can just add the software flake as an input to the configuration flake and that's it, and you have the build code separated from your system. Using e.g. "ssh+git://git.example.com/secret-project" as the input should work, though I don't know which user's SSH keys it will try to use. I think mozilla-overlay is a good example, the flake outputs are a couple overlays you can add to your system's nixpkgs (here's how to add overlays in nixos), especially take a look at phlay-overlay in the mozilla repo, it's an overlay that adds one package so it's pretty simple. You can do something similar without using flakes though, fetching the sources needs to be done differently though, I know there's the builtins.fetchGit and builtins.fetchTarball functions, the former I assume would work similarly with SSH keys, no idea about the latter. The rest, making a derivation for building the software and adding it to your configuration's nixpkgs, should work the same.
  • Widevine playback not working on NixOS Nightly
    1 project | /r/firefox | 19 Oct 2021
    I am on NixOS at the moment, Widevine (Nightly) on Arch was working well. I installed Nightly from https://github.com/mozilla/nixpkgs-mozilla.
  • Cannot get a newer version of a nodePackage with an override
    1 project | /r/NixOS | 21 Jun 2021
  • Help to get the latest version of Firefox
    2 projects | /r/NixOS | 6 Jun 2021
  • Fenix: rust toolchains for all channels and rust-analyzer nightly
    4 projects | /r/Nix | 12 May 2021
    Fenix provides the minimal, default, and complete profile of rust toolchains, latest profile of nightly toolchains, nightly version of rust analyzer and its vscode extension. It aims to be a replacement for rustup and the rust overlay provided by nixpkgs-mozilla.

What are some alternatives?

When comparing rust-overlay and nixpkgs-mozilla you can also consider the following projects:

naersk - Build Rust projects in Nix - no configuration, no code generation, no IFD, sandbox friendly.

rust-analyzer - A Rust compiler front-end for IDEs

Home Manager using Nix - Manage a user environment using Nix [maintainer=@rycee]

TextSnatcher - How to Copy Text from Images ? Answer is TextSnatcher !. Perform OCR operations in seconds on Linux Desktop.

fenix - Rust toolchains and rust-analyzer nightly for Nix [maintainer=@figsoda]

rust - Empowering everyone to build reliable and efficient software.

asdf-direnv - direnv plugin for the asdf version manager

dwm-flexipatch - A dwm build with preprocessor directives to decide which patches to include during build time

cargo2nix - Granular builds of Rust projects for Nix

rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]

nix-direnv - A fast, persistent use_nix/use_flake implementation for direnv [maintainer=@Mic92 / @bbenne10]