Skip to content

nix-community/robotnix

Repository files navigation

Important

The project is currently in the process of being picked up by a new maintainer, and many components are still in disrepair after having been unmaintained for three years. Currently, we are able to keep up with the LineageOS and GrapheneOS upstreams, but that could change at any point.

At this point, Robotnix is not ready for daily use. Treat it as in-development alpha software.

The status section contains more detailed information on which components are expected to work.

robotnix - Build Android (AOSP) using Nix

Robotnix enables a user to easily and reliably build Android (AOSP) images using the Nix package manager / build tool.

Quick Start

Here is a single command to build an img which can be flashed onto a Fairphone 4 (FP4).

$ nix-build "https://github.com/nix-community/robotnix/archive/master.tar.gz" \
    --arg configuration '{ device = "FP4"; flavor = "lineageos"; }' \
    -A img

The command above will build an image signed with publicly known test-keys, so definitely don't use this for anything intended to be secure. To flash the result to your device, run fastboot update -w <img.zip>.

Robotnix also provides a flake interface that can be used via the lib.robotnixSystem attribute similar to lib.nixosSystem:

{
    inputs.robotnix.url = "github:nix-community/robotnix";

    outputs = { self, robotnix }: {
        exampleSystem = robotnix.lib.robotnixSystem {
            flavor = "lineageos";

            # device codename - FP4 for Fairphone 4 in this case.
            # Supported devices are listed under https://wiki.lineageos.org/devices/
            device = "FP4";

            # LineageOS branch.
            # You can check the supported branches for your device under
            # https://wiki.lineageos.org/devices/<device codename>
            # Leave out to choose the official default branch for the device.
            flavorVersion = "22.2";

            apps.fdroid.enable = true;
            microg.enable = true;

            # Enables ccache for the build process. Remember to add /var/cache/ccache as
            # an additional sandbox path to your Nix config.
            ccache.enable = true;
        };
    };
}

You can then build the image with:

$ nix build .#exampleSystem.img

Motivation

Android projects often contain long and complicated build instructions requiring a variety of tools for fetching source code and executing the build. This applies not only to Android itself, but also to projects included in the Android build, such as the Linux kernel, Chromium webview, MicroG, other external/prebuilt privileged apps, etc. Robotnix orchestrates the diverse build systems across these multiple projects using Nix, inheriting its reliability and reproducibility benefits, and consequently making the build and signing process very simple for an end-user.

Robotnix includes a NixOS-style module system which allows users to easily customize various aspects of the their builds. Some optional modules include:

Documentation

More detailed robotnix documentation is available at https://docs.robotnix.org, and should be consulted before use.

Robotnix was presented at Nixcon 2020, and a recording of the talk is available here. Slides for the talk are also available here.

Requirements

The AOSP project recommends at least 250GB free disk space as well as 16GB RAM. (Certain device kernels which use LTO+CFI may require even more memory) A typical build requires approximately 45GB free disk space to check out the android source, ~14GB for chromium, plus ~100GB of additional free space for intermediate build products. By default, Nix uses /tmp to store these intermediate build products, so ensure your /tmp is not mounted using tmpfs, since the intermediate builds products are very large and will easily use all of your RAM (even if you have 32GB)! A user can use the --cores option for nix-build to set the number of cores to use, which can also be useful to decrease parallelism in case memory usage of certain build steps is too large.

Robotnix also requires support for user namespaces (CONFIG_USER_NS Linux kernel option). Currently, using the "signing inside Nix with a sandbox exception" feature also requires a Nix daemon with the sandbox support enabled. This feature is currently not supported inside Docker for this reason.

A full Android 10 build with Chromium webview takes approximately 10 hours on my quad-core i7-3770 with 16GB of memory. AOSP takes approximately 4 hours of that, while webview takes approximately 6 hours. I have recently upgraded to a 3970x Threadripper with 32-cores. This can build chromium+android in about an hour.

Community

The #robotnix:nixos.org channel on Matrix is available for a place to chat about the project, ask questions, and discuss robotnix development.

Status

This table documents the current status of Robotnix' components.

Component Maintained Subject to removal People knowledgeable
Android versions ✅ Yes - @Atemu @cyclic-pentane
dependencies (Nixpkgs) ✅ Yes - @Atemu @eyJhb
General code organisation ✅ Yes - @Atemu @cyclic-pentane
repo2nix ✅ Yes - @cylic-pentane
lineageos ✅ Yes - @cyclic-pentane @Atemu
graphene ✅ Yes - @cyclic-pentane
Pixel vendor blobs (adevtool) ✅ Yes No @cyclic-pentane
OTA updater ✅ Yes No @Atemu
vanilla ❌ No @cyclic-pentane might pick it up -
waydroid ❌ No Yes -
anbox ❌ No Yes (upstream is dead) -
F-droid ✅ Yes No @Atemu @eyJhb
µG ✅ Yes No @Atemu
Webview ❌ No No -
Kernels ❌ No No -
Pixel vendor blobs (android-prepare-vendor) ❌ No Yes (not used by GrapheneOS anymore) @cyclic-pentane
Signing ❌ No @cylic-pentane is currently picking it up @cyclic-pentane somewhat
Framework configuration ✅ Yes No @cyclic-pentane somewhat
Emulator ❌ No No -
Hosts-file ❌ No No -
Seedvault ❌ No No -
Auditor ❌ No No -
Chromium source build ❌ No No -

License information

This project is available as open source under the terms of MIT license. However, for accurate information, please check individual files.