diff options
author | tv <tv@shackspace.de> | 2015-07-28 21:38:22 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-28 21:38:22 +0200 |
commit | 06cb4d25ef40773e2cc516e50a9aeec6cbe1d0a8 (patch) | |
tree | e05d849f048473aa9c90dc81b09d3a30dbe28ccc /4lib/krebs/dns.nix | |
parent | 060087fab989a2cf362928c471ac8fd9c4d95c1e (diff) |
*/krebs -> krebs/*
Diffstat (limited to '4lib/krebs/dns.nix')
-rw-r--r-- | 4lib/krebs/dns.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/4lib/krebs/dns.nix b/4lib/krebs/dns.nix deleted file mode 100644 index b2cf3c24c..000000000 --- a/4lib/krebs/dns.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, ... }: - -let - listset = import ./listset.nix { inherit lib; }; -in - -with builtins; -with lib; - -rec { - # label = string - - # TODO does it make sense to have alias = list label? - - # split-by-provider : - # [[label]] -> tree label provider -> listset provider alias - split-by-provider = as: providers: - foldl (m: a: listset.insert (provider-of a providers) a m) {} as; - - # provider-of : alias -> tree label provider -> provider - # Note that we cannot use tree.get here, because path can be longer - # than the tree depth. - provider-of = a: - let - go = path: tree: - if typeOf tree == "string" - then tree - else go (tail path) tree.${head path}; - in - go (reverseList (splitString "." a)); -} |