exprs: Dict[str, str] = {}
config = read_config_files(args.channels_file)
for section in config:
- if 'alias_of' in config[section]:
+ sp = read_search_path(config[section])
+ if isinstance(sp, AliasSearchPath):
assert 'git_repo' not in config[section]
continue
- sp = read_search_path(config[section])
tarball = sp.fetch(v, section, config[section])
exprs[section] = (
'f: f { name = "%s"; channelName = "%%s"; src = builtins.storePath "%s"; }' %