mirror of
https://github.com/NixOS/nix.git
synced 2025-11-27 04:30:59 +01:00
12 lines
345 B
Nix
12 lines
345 B
Nix
{system, derivations, stateIdentifiers, runtimeStateArgs, manifest, nixBinDir, nixStore}:
|
|
|
|
derivation {
|
|
name = "user-environment";
|
|
system = system;
|
|
builder = ./builder.pl;
|
|
derivations = derivations;
|
|
runtimeStateArgs_arg = runtimeStateArgs;
|
|
stateIdentifiers = stateIdentifiers;
|
|
manifest = manifest;
|
|
inherit nixBinDir nixStore;
|
|
}
|