diff options
-rw-r--r-- | tv/5pkgs/default.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tv/5pkgs/default.nix b/tv/5pkgs/default.nix index 9e9a3a9b8..ea860c7d2 100644 --- a/tv/5pkgs/default.nix +++ b/tv/5pkgs/default.nix @@ -1,4 +1,11 @@ with import <stockholm/lib>; +let + pushBack = x: xs: + if elem x xs then + remove x xs ++ [ x ] + else + names; +in self: super: @@ -9,7 +16,8 @@ fix (name: import (./. + "/${name}")) (filter (name: name != "default.nix" && !hasPrefix "." name) - (attrNames (readDir ./.))))) + (pushBack "override" + (attrNames (readDir ./.)))))) // |