diff options
author | tv <tv@krebsco.de> | 2016-02-21 20:04:45 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-02-21 21:52:05 +0100 |
commit | de5de37a12771db395f7bc1954be52f51f54b9e2 (patch) | |
tree | 11a97214d5b869507916da79bfd47e6eef109988 /krebs/4lib/dns.nix | |
parent | 67e5fddc0bfe624c6b53b673582e92a28cf530f9 (diff) |
krebs.dns.providers: attrsOf unspecified -> attrsOf str
Diffstat (limited to 'krebs/4lib/dns.nix')
-rw-r--r-- | krebs/4lib/dns.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/krebs/4lib/dns.nix b/krebs/4lib/dns.nix deleted file mode 100644 index b2cf3c24c..000000000 --- a/krebs/4lib/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)); -} |