1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-09-19 07:47:20 +03:00
mobile-nixos/default.nix
Samuel Dionne-Riel 2fbd2c660d default.nix: Fix bug with special configuration
Associativity strikes!
2020-03-29 00:18:02 -04:00

121 lines
3.9 KiB
Nix

let
# Selection of the device can be made either through the environment or through
# using `--argstr device [...]`.
deviceFromEnv = builtins.getEnv "MOBILE_NIXOS_DEVICE";
# Selection of the configuration can by made either through NIX_PATH,
# through local.nix or as a parameter.
default_configuration =
let
configPathFromNixPath = (builtins.tryEval <mobile-nixos-configuration>).value;
in
if configPathFromNixPath != false then [ configPathFromNixPath ]
else if (builtins.pathExists ./local.nix) then builtins.trace "WARNING: evaluation includes ./local.nix" [ (import ./local.nix) ]
else []
;
# "a" nixpkgs we're using for its lib.
pkgs' = import <nixpkgs> {};
inherit (pkgs'.lib) optional strings;
inherit (strings) concatStringsSep stringAsChars;
in
{
# The identifier of the device this should be built for.
# (This gets massaged later on)
# This allows using `default.nix` as a pass-through function.
# See usage in examples folder.
device ? null
, configuration ? default_configuration
# Internally used to tack on configuration by release.nix
, additionalConfiguration ? {}
}:
let
# Either use:
# The given `device`.
# The environment variable.
final_device =
if device != null then device
else if deviceFromEnv == "" then
throw "Please pass a device name or set the MOBILE_NIXOS_DEVICE environment variable."
else deviceFromEnv
;
# Evaluates NixOS, mobile-nixos and the device config with the given
# additional modules.
# Note that we can receive a "special" configuration, used internally by
# `release.nix` and not part of the public API.
evalWith = modules: import ./lib/eval-config.nix {
modules =
(if device ? special
then [ device.config ]
else [ (import (./. + "/devices/${final_device}" )) ])
++ modules
++ [ additionalConfiguration ]
;
};
# The "default" eval.
eval = evalWith configuration;
# This is used by the `-A installer` shortcut.
installer-eval = evalWith [
./profiles/installer.nix
];
# Makes a mostly useless header.
# This is mainly useful for batch evals.
header = str:
let
str' = "* ${str} *";
line = stringAsChars (x: "*") str';
in
builtins.trace (concatStringsSep "\ntrace: " [line str' line])
;
in
(
if device ? special
then header "Evaluating: ${device.name}"
else header "Evaluating device: ${device}"
)
{
# The build artifacts from the modules system.
inherit (eval.config.system) build;
# The evaluated config
inherit (eval) config;
# The final pkgs set, usable as -A pkgs.[...] on the CLI.
inherit (eval) pkgs;
# The whole (default) eval
inherit eval;
# Shortcut to allow building `nixos` from the same channel revision.
# This is used by `./nixos/default.nix`
# Any time `nix-build nixos` is used upstream, it can be used here.
nixos = import <nixpkgs/nixos>;
# `mobile-installer` will, when possible, contain the installer build for the
# given system. It usually is an alias for a disk-image type build.
installer = installer-eval.config.system.build.mobile-installer;
# Evaluating this whole set is counter-productive.
# It'll put a *bunch* of build products from the misc. inherits we added.
# (We're also using `device` to force the other throw to happen first.)
# TODO : We may want to produce an internal list of available outputs, so that
# each platform can document what it makes available. This would allow
# the message to be more user-friendly by displaying a choice.
__please-fail = throw ''
Cannot directly build for ${final_device}...
Building this whole set is counter-productive, and not likely to be what
is desired.
You can try to build the `installer` attribute (-A installer) if your system
provides an installer.
Please refer to your platform's documentation for usage.
'';
}