# `nix-update` wants a entry point similar to `release.nix`. # This means that we have to fetch our dependencies on our own. {}: let get = input: import (builtins.fetchTree input.locked).outPath {}; lock = (builtins.fromJSON (builtins.readFile ../flake.lock)).nodes; pkgs = get lock.nixpkgs; pkgsUnstable = get lock.nixpkgs-unstable; nixLib = get lock.library; in import ./default.nix {inherit pkgs pkgsUnstable nixLib;}