diff options
| author | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
| commit | 39eacce0f8c053fbdf5189c50c7704db4a295c32 (patch) | |
| tree | 6c25ed67af9d9a2cd222f8f582917d1b20e0ee71 /4lib/krebs/dns.nix | |
| parent | a2be52f6fa5cbd486da38be1e3b4dcdcde3b17fd (diff) | |
| parent | 1cbf3f264ad073bee5766627bcb8364c52c22f9c (diff) | |
merge cloudkrebs, fix path to krebs/4lib
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 b2cf3c2..0000000 --- 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)); -} |
