summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/default.nix
blob: 245d0542b266bdecd8242b9f4a9b5acf237da290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}"))
      (pushBack "override"
        (attrNames
          (filterAttrs isNixDirEntry (readDir ./.))))))