biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / as-tree / default.nix
blob7a8ec4830642839f76af9acec886cea79dee3333
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "as-tree";
5   version = "unstable-2021-03-09";
7   src = fetchFromGitHub {
8     owner = "jez";
9     repo = pname;
10     rev = "0036c20f66795774eb9cda3ccbae6ca1e1c19444";
11     sha256 = "sha256-80yB89sKIuv7V68p0jEsi2hRdz+5CzE+4R0joRzO7Dk=";
12   };
14   cargoHash = "sha256-BLEVPKO2YwcKuM/rUeMuyE38phOrbq0e8cjqh1qmJjM=";
16   meta = with lib; {
17     description = "Print a list of paths as a tree of paths";
18     homepage = "https://github.com/jez/as-tree";
19     license = with licenses; [ blueOak100 ];
20     maintainers = with maintainers; [ jshholland ];
21     mainProgram = "as-tree";
22   };