2019-09-21 22:40:46 +03:00
|
|
|
# Selection of the device can be made either through the environment or through
|
|
|
|
# using `--argstr device [...]`.
|
2019-06-10 00:25:40 +03:00
|
|
|
let deviceFromEnv = builtins.getEnv "MOBILE_NIXOS_DEVICE"; in
|
2019-09-21 22:40:46 +03:00
|
|
|
|
2019-09-22 05:40:24 +03:00
|
|
|
{
|
|
|
|
# "a" nixpkgs we're using for its lib.
|
|
|
|
pkgs' ? import <nixpkgs> {}
|
|
|
|
|
|
|
|
# The identifier of the device this should be built for.
|
2019-09-21 22:40:46 +03:00
|
|
|
, device ?
|
2019-06-10 00:25:40 +03:00
|
|
|
if deviceFromEnv == ""
|
|
|
|
then throw "Please pass a device name or set the MOBILE_NIXOS_DEVICE environment variable."
|
|
|
|
else deviceFromEnv
|
2018-06-17 02:21:41 +03:00
|
|
|
}:
|
|
|
|
let
|
2019-09-21 22:40:46 +03:00
|
|
|
inherit (pkgs'.lib) optional;
|
|
|
|
|
2019-09-22 05:40:24 +03:00
|
|
|
# Evaluates NixOS, mobile-nixos and the device config with the given
|
|
|
|
# additional modules.
|
|
|
|
evalWith = modules: import ./lib/eval-config.nix {
|
2018-06-17 02:21:41 +03:00
|
|
|
modules = [
|
|
|
|
(import (./. + "/devices/${device}" ))
|
2019-09-22 05:40:24 +03:00
|
|
|
] ++ modules;
|
2018-06-17 02:21:41 +03:00
|
|
|
};
|
2019-09-22 05:40:24 +03:00
|
|
|
|
|
|
|
# Eval with `local.nix` if available.
|
|
|
|
# This eval is the "WIP" eval. What's usually built with `nix-build`.
|
|
|
|
eval = evalWith (optional (builtins.pathExists ./local.nix) (import (./local.nix )));
|
2019-09-22 05:45:41 +03:00
|
|
|
|
|
|
|
# This is used by the `-A installer` shortcut.
|
|
|
|
installer-eval = evalWith [
|
|
|
|
./profiles/installer.nix
|
|
|
|
];
|
2018-06-17 02:21:41 +03:00
|
|
|
in
|
|
|
|
{
|
2019-09-22 05:40:24 +03:00
|
|
|
# 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
|
2019-09-21 22:40:46 +03:00
|
|
|
inherit eval;
|
2018-06-24 00:11:07 +03:00
|
|
|
|
|
|
|
# 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.
|
2019-09-22 05:40:24 +03:00
|
|
|
nixos = import <nixpkgs/nixos>;
|
|
|
|
|
2019-09-22 05:45:41 +03:00
|
|
|
# `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;
|
|
|
|
|
2019-09-22 05:40:24 +03:00
|
|
|
# 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 ${device}...
|
|
|
|
|
|
|
|
Building this whole set is counter-productive, and not likely to be what
|
|
|
|
is desired.
|
|
|
|
|
2019-09-22 05:45:41 +03:00
|
|
|
You can try to build the `installer` attribute (-A installer) if your system
|
|
|
|
provides an installer.
|
|
|
|
|
2019-09-22 05:40:24 +03:00
|
|
|
Please refer to your platform's documentation for usage.
|
|
|
|
'';
|
2018-06-17 02:21:41 +03:00
|
|
|
}
|