1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-09-11 12:05:26 +03:00

Merge pull request #702 from samueldr-wip/fix/remove-builds-attr

Remove the `builds` attribute
This commit is contained in:
Samuel Dionne-Riel 2024-03-25 21:09:45 -04:00 committed by GitHub
commit ef941ecad6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@ This will have different implications depending on the device.
(E.g. `pine64-pinephone`)
```
$ nix-build examples/installer/ --argstr device pine64-pinephone -A build.default
$ nix-build examples/installer/ --argstr device pine64-pinephone -A outputs.default
$ file -L result
result: DOS/MBR boot sector; partition 1 : ID=0xee, start-CHS (0x0,0,2), end-CHS (0x3ff,255,63), startsector 1, 319555 sectors, extended partition table (last)
```

View File

@ -11,4 +11,4 @@ let
]; } ];
});
in
system-build.build.vm
system-build.outputs.vm

View File

@ -11,4 +11,4 @@ let
]; } ];
});
in
system-build.build.vm
system-build.outputs.vm

View File

@ -60,7 +60,6 @@ in
{
# The build artifacts from the modules system.
inherit outputs;
build = builtins.trace "The `build` argument has been renamed `outputs`. This alias will be removed after 2022-05." outputs;
# The evaluated config
inherit (eval) config;