crate2nix VS nix2container

Compare crate2nix vs nix2container and see what are their differences.

crate2nix

rebuild only changed crates in CI with crate2nix and nix (by nix-community)

nix2container

An archive-less dockerTools.buildImage implementation (by nlewo)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
crate2nix nix2container
10 9
317 430
3.2% -
9.3 6.3
5 days ago 11 days ago
Nix Go
Apache License 2.0 Apache License 2.0
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.

crate2nix

Posts with mentions or reviews of crate2nix. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-02.
  • Transitioning to Rust as a company
    8 projects | /r/rust | 2 Jun 2023
  • How to package a Rust app using Nix
    1 project | dev.to | 6 Jan 2023
    I'll use nixpkgs' buildRustPackage. There's a few other tools, my favorite being crate2nix, but we'll leave that to a future tutorial.
  • Nix shell related questions (for rust)
    5 projects | /r/NixOS | 24 Dec 2022
    If you want to iterate with nix instead of cargo, crate2nix and cargo2nix provides more caching and more fine control over your dependencies. I haven't used these two so you would have to decide for yourself. You may also want to try out nocargo for something more experimental.
  • Introducing Crane: Composable and Cacheable Builds with Cargo and Nix
    3 projects | /r/rust | 8 May 2022
    2 projects | /r/NixOS | 22 Jan 2022
    I'm yet to try it out, but from the blog post, the README and the source it appears that Crane builds all dependencies in one derivation (separately from the main crate). This means that if a dependency gets added, removed or changed, all dependencies of a crate will be rebuilt. This is in contrast with https://github.com/kolloch/crate2nix, which does build every dependency in a separate package, thus you don't need to rebuild other dependencies if you only change a small part of the tree.
  • Nixery – Docker images on the fly with Nix
    8 projects | news.ycombinator.com | 18 Apr 2022
    Yes, you will have to package it if it's not already in nixpkgs.

    The good news is once you learn how, it's basically trivial with crate2nix[0], which can autogenerate nix derivations from rust crates

    [0] https://github.com/kolloch/crate2nix

  • Help with Nix and Rust
    1 project | /r/rust | 16 Jul 2021
    From my quick reading of cargo2nix's webpage yes. https://github.com/kolloch/crate2nix has a workspaces section.
  • How do you install packages not in Nixpkgs?
    5 projects | /r/NixOS | 15 Apr 2021
    As for your two applications, they're both written in Rust, and I like https://github.com/kolloch/crate2nix as a way to package Rust crates with Nix. BTW, wezterm is already in nixpkgs!
  • Nix-ifying a Rust project
    12 projects | /r/rust | 7 Apr 2021
    I like the way crate2nix works. I have made a flake template for it here. Sometimes it requires a couple of overrides to fix some misbehaving crates (see https://github.com/balsoft/simple-osd-daemons/blob/master/flake.nix#L29 for an example of such overrides), but otherwise it's fantastic. It doesn't require any hash nonsense, it downloads and builds all the crates separately (unlike naersk or other solutions) so you get all the benefits of Nix (reproducibility and proper caching).
  • How to do a full, reproducible archive of a Rust project?
    3 projects | /r/rust | 8 Jan 2021
    Crate2nix might help: https://github.com/kolloch/crate2nix

nix2container

Posts with mentions or reviews of nix2container. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-15.
  • Nix is a better Docker image builder than Docker's image builder
    21 projects | news.ycombinator.com | 15 Mar 2024
    No discussion about Nix-built containers is complete with nix2container:

    https://github.com/nlewo/nix2container

    It is truly magical for handling large, multi-layered containers. Instead of building the container archives themselves and storing them in the nix store, it builds a JSON manifest that is consumed by a lightly patched version of skopeo that streams the layers directly to either your local container engine or the registry.

    This means you never rebuild or reupload a container layer that is unchanged.

  • Way to get NVM working in CI/CD systems
    6 projects | news.ycombinator.com | 19 May 2023
    - Container images are built with https://github.com/nlewo/nix2container instead of Nix's built-in docker tools, because nix2container allows configuration of layers and thus makes it easier to share layers between images and improve layer caching.

    As for integrating it into our CI pipeline, this is pretty much CI system agnostic as all you have to do is run `nix build ...` inside the pipeline, generating a `result` directory or file as an artifact that, in the case of nix2container, can be pushed to your container image registry.

  • How do I create a docker image for postgres with nix?
    4 projects | /r/NixOS | 10 Mar 2023
    dockerTools is the canonical way, but https://github.com/nlewo/nix2container seems to be gaining support as it's faster and doesn't use so much disk space while building.
  • We deploy 5X faster with warm Docker containers
    3 projects | news.ycombinator.com | 7 Mar 2023
    > The key factor behind our decision was the realization that while Docker images are industry standard, moving around 100s of megabytes of images seems unnecessarily heavy-handed when we just need to synchronize a small change.

    I think the culprit is more the GitHub Actions cache than Docker since it seems to be hard to get a clean cache management. I'm not sure about caching Docker image layers, but caching the Nix store with GitHub Actions is pretty complicated (not even sure it's possible): this means we have to download all required Nix store paths on each run, but i consider this is because of a GitHub Action cache limitation.

    So, did you consider using another CI, which offers better caching mechanisms?

    With a CI able to preserve the Nix store (Hydra[1] or Hercules[2] for instance), I think nix2container (author here) could also fit almost all of your requirements ("composability", reproducibility, isolation) and maybe provide better performances because it is able to split your application into several layers [2][3].

    Note i'm pretty sure a lot of Docker CI also allows to efficiently build Docker images.

    [1] https://hercules-ci.com/

    [2] https://grahamc.com/blog/nix-and-layered-docker-images

    [3] https://github.com/nlewo/nix2container/blob/85670cab354f7df6...

  • Launch HN: Depot (YC W23) – Fast Docker Images in the Cloud
    6 projects | news.ycombinator.com | 22 Feb 2023
    FYI, the nix2container [1] project (author here) aims to speedup the standard Nix container workflow (dockerTools.buildImage) by basically skipping the tarball step: it directly streams non already pushed layers.

    [1] https://github.com/nlewo/nix2container

  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    To get Rust incremental builds, did you consider using something such as crane https://github.com/ipetkov/crane ?

    And regarding OCI images, i built nix2container (https://github.com/nlewo/nix2container) to speed up image build and push times.

  • Optimising Docker Layers for Better Caching with Nix (2018)
    2 projects | news.ycombinator.com | 11 Sep 2022
    For a more modern iteration of that idea, check out https://github.com/nlewo/nix2container

    It has all the benefits of OP but produces the images much faster, and with less on-disk usage.

  • Nixpacks takes a source directory and produces an OCI compliant image
    7 projects | news.ycombinator.com | 17 Aug 2022
    I've been using nix2container[1] for awhile now. It looks like this depends on Docker, have you guys considered removing that dependency? It shouldn't be necessary to create an OCI compliant image with Nix.

    [1]: https://github.com/nlewo/nix2container

  • Nixery – Docker images on the fly with Nix
    8 projects | news.ycombinator.com | 18 Apr 2022
    With https://github.com/nlewo/nix2container, I'm trying to make a more standalone tool. Basically, a Go binary takes a reference graph and produces a JSON file describing a container image. This JSON file is then ingested by a Skopeo fork (it adds a new `transport`) to produce images (to file, registries,...).

    Currently, it supports the dockerTools layering algorithm and is designed to work with Guix [1] as well;)

    [1] https://github.com/nlewo/nix2container/blob/065e5b108650ee4c...

What are some alternatives?

When comparing crate2nix and nix2container you can also consider the following projects:

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

cargo2nix - Granular builds of Rust projects for Nix

nixpacks - App source + Nix packages + Docker = Image

rust-nix-template - Rust project template with Nix (Flakes) and VSCode support

plane - A distributed system for running WebSocket services at scale.

crates.io-index - Registry index for crates.io

Moby - The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems

nix-templates - Nix Flake templates for various languages

nixos - My NixOS Configurations

buildah - A tool that facilitates building OCI images.