tv pkgs: import override last
This commit is contained in:
parent
09fa6fbad6
commit
5aff05de1b
@ -1,4 +1,11 @@
|
|||||||
with import <stockholm/lib>;
|
with import <stockholm/lib>;
|
||||||
|
let
|
||||||
|
pushBack = x: xs:
|
||||||
|
if elem x xs then
|
||||||
|
remove x xs ++ [ x ]
|
||||||
|
else
|
||||||
|
names;
|
||||||
|
in
|
||||||
|
|
||||||
self: super:
|
self: super:
|
||||||
|
|
||||||
@ -9,7 +16,8 @@ fix
|
|||||||
(name: import (./. + "/${name}"))
|
(name: import (./. + "/${name}"))
|
||||||
(filter
|
(filter
|
||||||
(name: name != "default.nix" && !hasPrefix "." name)
|
(name: name != "default.nix" && !hasPrefix "." name)
|
||||||
(attrNames (readDir ./.)))))
|
(pushBack "override"
|
||||||
|
(attrNames (readDir ./.))))))
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user