Interactively browse dependency graphs of Nix derivations.
Go to file
2021-03-17 11:12:47 +13:00
.github/workflows ci: Bump cachix-action 2020-11-27 14:29:23 +13:00
src Formatting 2021-03-15 10:53:11 +13:00
test Don't hardcode '/nix/store', instead query at startup 2021-03-10 22:30:56 +13:00
.envrc Start using Nix flakes 2020-11-02 10:08:32 +13:00
.ghci Initial commit 2020-06-25 10:41:28 +12:00
.gitignore Initial commit 2020-06-25 10:41:28 +12:00
asciicast.sh Update asciicast 2021-02-28 00:12:41 +13:00
CHANGELOG.md Add missing dates to the CHANGELOG 2021-03-17 11:12:47 +13:00
default.nix Add a shell.nix and default.nix using flake-compat 2020-11-27 11:11:19 +13:00
flake.lock Update sources 2021-03-15 10:53:26 +13:00
flake.nix Remove unnecessary nix-gitignore use 2021-02-28 00:12:41 +13:00
format.sh Fix format.sh script 2021-02-23 16:01:56 +13:00
LICENSE Add LICENSE 2020-12-22 10:52:02 +13:00
nix-tree.cabal Release 0.1.6 2021-03-12 00:05:18 +13:00
README.md Fix asciicast link 2021-03-01 21:10:50 +13:00
shell.nix Add a shell.nix and default.nix using flake-compat 2020-11-27 11:11:19 +13:00

nix-tree

Build Status Packaging status

Interactively browse the dependency graph of your Nix derivations.

asciicast

Installation

Stable version:

nix-env -i nix-tree

Development version (requires Nix with flake support):

nix profile install github:utdemir/nix-tree

Usage

$ nix-tree --help
nix-tree --help
Usage: nix-tree [paths] [-h|--help]
  Paths default to $HOME/.nix-profile and /var/run/current-system.
Keybindings:
  hjkl/Arrow Keys : Navigate
  q/Esc:          : Quit / close modal
  w               : Open why-depends mode
  /               : Open search mode
  s               : Change sort order
  ?               : Show help

Glossary

  • NAR Size: Size of the store path itself.
  • Closure size: Total size of the store path and all its transitive dependencies.
  • Added size: Size of the store path, and all its unique transitive dependencies. In other words, the cost of having that store path on top of all other paths. See issue #14 for a better explanation.

Tips

nix-build prints built paths to stdout, which can be piped conveniently with | xargs -o nix-tree. Examples:

# Output of a local derivation
nix-build . --no-out-link | xargs -o nix-tree

# Build time dependencies (passing a `.drv` path)
nix-instantiate --no-out-link | xargs -o nix-tree

# Dependencies from shell.nix
nix-build shell.nix -A inputDerivation | xargs -o nix-tree

# All outputs of a derivation in nixpkgs:
nix-build '<nixpkgs>' -A openssl.all --no-out-link | xargs -o nix-tree

Hacking

All contributions, issues and feature requests are welcome.

To hack on it, simply run nix-shell (or nix develop) and use cabal as usual.

Related tools