2020-04-26 12:40:06 +00:00
|
|
|
# for passing build options, see nix/README.md
|
2020-06-05 09:23:22 +00:00
|
|
|
{ config ? { } }:
|
2019-06-04 16:50:29 +00:00
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
let
|
2020-06-05 09:23:22 +00:00
|
|
|
main = import ./nix { inherit config; };
|
2019-06-04 16:50:29 +00:00
|
|
|
in {
|
2020-04-26 12:40:06 +00:00
|
|
|
# this is where the --attr argument selects the shell or target
|
2019-11-29 10:20:08 +00:00
|
|
|
inherit (main) pkgs targets shells;
|
2020-06-05 09:23:22 +00:00
|
|
|
inherit (main.pkgs) config;
|
2019-06-04 16:50:29 +00:00
|
|
|
}
|