nixpkgs/pkgs/tools/misc/as-tree/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
633 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2020-07-28 11:54:30 +00:00
rustPlatform.buildRustPackage rec {
pname = "as-tree";
version = "unstable-2021-03-09";
2020-07-28 11:54:30 +00:00
src = fetchFromGitHub {
owner = "jez";
repo = pname;
rev = "0036c20f66795774eb9cda3ccbae6ca1e1c19444";
sha256 = "sha256-80yB89sKIuv7V68p0jEsi2hRdz+5CzE+4R0joRzO7Dk=";
2020-07-28 11:54:30 +00:00
};
cargoSha256 = "sha256-BLEVPKO2YwcKuM/rUeMuyE38phOrbq0e8cjqh1qmJjM=";
2020-07-28 11:54:30 +00:00
meta = with lib; {
description = "Print a list of paths as a tree of paths";
homepage = "https://github.com/jez/as-tree";
license = with licenses; [ blueOak100 ];
maintainers = with maintainers; [ jshholland ];
};
}