flattenTree: use / as the key separator

That character is less likely to be used in normal packaging names.
This commit is contained in:
zimbatm
2020-07-22 11:35:14 +02:00
parent 5973a46a75
commit 8e1f14e82d
4 changed files with 9 additions and 6 deletions

View File

@@ -7,7 +7,10 @@
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
rec {
packages.hello = pkgs.hello;
packages = flake-utils.lib.flattenTree {
hello = pkgs.hello;
gitAndTools = pkgs.gitAndTools;
};
defaultPackage = packages.hello;
apps.hello = flake-utils.lib.mkApp { drv = packages.hello; };
defaultApp = apps.hello;