naersk VS nix2container

Compare naersk vs nix2container and see what are their differences.

naersk

Build Rust projects in Nix - no configuration, no code generation, no IFD, sandbox friendly. (by nix-community)

nix2container

An archive-less dockerTools.buildImage implementation (by nlewo)
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
naersk nix2container
6 9
637 444
1.6% -
5.6 6.3
13 days ago 13 days ago
Nix Go
MIT License 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.

naersk

Posts with mentions or reviews of naersk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-07.
  • Help with building a 32bit library with cargo
    3 projects | /r/NixOS | 7 Apr 2023
    i would also recommend using crane or naersk since iirc rustPlaform.buildRustPackage can mangle some of these options (or maybe i just did something wrong lol)
  • Nix & Rust - cargo2nix 0.11.0 released
    4 projects | /r/rust | 15 May 2022
    Have a look at naersk, it neither requires generated Nix files nor IFD.
  • Nix and NixOS Get So Close to Perfect
    11 projects | news.ycombinator.com | 24 Apr 2022
    We use naersk[0] for Rust projects in our Nix monorepo (for example [1]). It's pretty hands-off in terms of the Nix code needed (you don't need to pin hashes inside of the Nix code as long as you have a Cargo lockfile) and all the existing tooling keeps working fine.

    The main drawback of it is that it currently builds all of your dependencies in one big derivation, so any dependency changes cause a full rebuild. There's some other project I saw fly by which attempts to do a similar thing but split each crate into a separate derivation, but I forgot what it's called and have no experience with it.

    [0]: https://github.com/nix-community/naersk

    [1]: https://cs.tvl.fyi/depot/-/blob/ops/journaldriver/default.ni...

  • Nixery – Docker images on the fly with Nix
    8 projects | news.ycombinator.com | 18 Apr 2022
    You can also use naersk¹ if you want to avoid a two-step process. It's especially convenient when using nix flakes.

    ¹https://github.com/nix-community/naersk

  • niv, naersk, napalm: moving on
    7 projects | /r/NixOS | 9 Jul 2021
    I created https://github.com/nmattia/napalm/issues/34 and https://github.com/nmattia/naersk/issues/183 to move them to nix-community
  • Nix-ifying a Rust project
    12 projects | /r/rust | 7 Apr 2021
    sounds exactly like what naersk does. naersk doesn't need a cargSha256 argument since it downloads dependencies from Cargo.lock. it can also grab the version number from Cargo.toml

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 naersk and nix2container you can also consider the following projects:

crate2nix - rebuild only changed crates in CI with crate2nix and nix

rust-overlay - Pure and reproducible nix overlay of binary distributed rust toolchains

nixpacks - App source + Nix packages + Docker = Image

cargo2nix - Granular builds of Rust projects for Nix

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

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

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

direnv - unclutter your .profile

crane - A Nix library for building cargo projects. Never build twice thanks to incremental artifact caching.

buildah - A tool that facilitates building OCI images.