summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/default.nix
blob: 5a018a166ff1f5ccd1f924028a132b66c3024879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
with import ../../lib;
let
  pushBack = x: xs:
    if elem x xs then
      remove x xs ++ [ x ]
    else
      xs;
in

self: super:

# Import files and subdirectories like they are overlays.
fix
  (foldl' (flip extends) (_: super)
    (map
      (name: import (./. + "/${name}"))
      (filter
        (name: name != "default.nix" && !hasPrefix "." name)
        (pushBack "override"
          (attrNames (readDir ./.))))))