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