summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/default.nix
blob: 494cb9e63e26fe50fd1f95e95692f9fff1a775a4 (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 ./.))))))