+def fetch_channel(
+ v: Verification,
+ section: str,
+ conf: configparser.SectionProxy) -> str:
+ if 'git_repo' not in conf or 'release_name' not in conf:
+ raise Exception(
+ 'Cannot update unpinned channel "%s" (Run "pin" before "update")' %
+ section)
+
+ if 'channel_url' in conf:
+ return fetch_with_nix_prefetch_url(
+ v, conf['tarball_url'], Digest16(
+ conf['tarball_sha256']))
+
+ channel = Channel(**dict(conf.items()))
+ ensure_git_rev_available(v, channel)
+ return git_get_tarball(v, channel)
+
+
+def update(args: argparse.Namespace) -> None:
+ v = Verification()
+ config = configparser.ConfigParser()
+ exprs: Dict[str, str] = {}
+ configs = [read_config(filename) for filename in args.channels_file]
+ for config in configs:
+ for section in config.sections():
+ if 'alias_of' in config[section]:
+ assert 'git_repo' not in config[section]
+ continue
+ tarball = fetch_channel(v, section, config[section])
+ if section in exprs:
+ raise Exception('Duplicate channel "%s"' % section)
+ exprs[section] = (
+ 'f: f { name = "%s"; channelName = "%%s"; src = builtins.storePath "%s"; }' %
+ (config[section]['release_name'], tarball))
+
+ for config in configs:
+ for section in config.sections():
+ if 'alias_of' in config[section]:
+ if section in exprs:
+ raise Exception('Duplicate channel "%s"' % section)
+ exprs[section] = exprs[str(config[section]['alias_of'])]
+
+ command = [
+ 'nix-env',
+ '--profile',
+ '/nix/var/nix/profiles/per-user/%s/channels' %
+ getpass.getuser(),
+ '--show-trace',
+ '--file',
+ '<nix/unpack-channel.nix>',
+ '--install',
+ '--from-expression'] + [exprs[name] % name for name in sorted(exprs.keys())]
+ if args.dry_run:
+ print(' '.join(map(shlex.quote, command)))
+ else:
+ v.status('Installing channels with nix-env')
+ process = subprocess.run(command)
+ v.result(process.returncode == 0)
+
+
+def main() -> None:
+ parser = argparse.ArgumentParser(prog='pinch')
+ subparsers = parser.add_subparsers(dest='mode', required=True)
+ parser_pin = subparsers.add_parser('pin')
+ parser_pin.add_argument('channels_file', type=str)
+ parser_pin.add_argument('channels', type=str, nargs='*')
+ parser_pin.set_defaults(func=pin)
+ parser_update = subparsers.add_parser('update')
+ parser_update.add_argument('--dry-run', action='store_true')
+ parser_update.add_argument('channels_file', type=str, nargs='+')
+ parser_update.set_defaults(func=update)
+ args = parser.parse_args()
+ args.func(args)
+
+
+main()