stockholm/mb/5pkgs/default.nix

12 lines
284 B
Nix
Raw Normal View History

2019-04-19 14:14:53 +00:00
with import <stockholm/lib>;
self: super:
# Import files and subdirectories like they are overlays.
foldl' mergeAttrs {}
(map
(name: import (./. + "/${name}") self super)
(filter
(name: name != "default.nix" && !hasPrefix "." name)
(attrNames (readDir ./.))))