dust_style_filetree_display 0.8.5

a rip off of dust's display, useful for applications that want dust's output style for some reason
Documentation
{ pkgs ? import <nixpkgs> {} }:

let
  # We may need some packages from nixpkgs-unstable
  #unstable = import <nixpkgs-unstable> {};

  rust-toolchain = pkgs.symlinkJoin {
    name = "rust-toolchain";
    paths = [pkgs.rustc pkgs.cargo pkgs.clippy pkgs.rustfmt pkgs.rustPlatform.rustcSrc];
  };
in

pkgs.mkShell {

  buildInputs = [
    rust-toolchain
  ];

}