mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
c155a3f46e
include the closure of /bin/sh. Otherwise all builders that call /bin/sh will fail when using the new chroot implementation, which only bind-mounts the inputs of a build rather than the whole Nix store. svn path=/nixos/trunk/; revision=13640
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
let
|
|
|
|
fromEnv = name: default:
|
|
let env = builtins.getEnv name; in
|
|
if env == "" then default else env;
|
|
configuration = import (fromEnv "NIXOS_CONFIG" /etc/nixos/configuration.nix);
|
|
nixpkgsPath = fromEnv "NIXPKGS" /etc/nixos/nixpkgs;
|
|
|
|
system = import system/system.nix { inherit configuration nixpkgsPath; };
|
|
|
|
in
|
|
|
|
{ inherit (system)
|
|
activateConfiguration
|
|
bootStage2
|
|
etc
|
|
grubMenuBuilder
|
|
kernel
|
|
modulesTree
|
|
nix
|
|
system
|
|
systemPath
|
|
config
|
|
;
|
|
|
|
inherit (system.nixosTools)
|
|
nixosCheckout
|
|
nixosHardwareScan
|
|
nixosInstall
|
|
nixosRebuild
|
|
nixosGenSeccureKeys
|
|
;
|
|
|
|
inherit (system.initialRamdiskStuff)
|
|
bootStage1
|
|
extraUtils
|
|
initialRamdisk
|
|
modulesClosure
|
|
;
|
|
|
|
nixFallback = system.nix;
|
|
|
|
manifests = system.config.installer.manifests; # exported here because nixos-rebuild uses it
|
|
|
|
upstartJobsCombined = system.upstartJobs;
|
|
|
|
# Make it easier to build individual Upstart jobs (e.g., "nix-build
|
|
# /etc/nixos/nixos -A upstartJobs.xserver").
|
|
upstartJobs = { recurseForDerivations = true; } //
|
|
builtins.listToAttrs (map (job:
|
|
{ name = if job ? jobName then job.jobName else job.name; value = job; }
|
|
) system.upstartJobs.jobs);
|
|
|
|
}
|