mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
erdtree: init at 1.0.0
This commit is contained in:
parent
a59fe7abba
commit
9d661624b4
25
pkgs/tools/system/erdtree/default.nix
Normal file
25
pkgs/tools/system/erdtree/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "erdtree";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "solidiquis";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-gZC90flsfH03Grc1netzlv/iX/9DH+rpaSstfXFearc=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-0I60lUYyR4Za2Q3FqcdqJhUKFjX5+PE88G6JxxxiBXw=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "File-tree visualizer and disk usage analyzer";
|
||||
homepage = "https://github.com/solidiquis/erdtree";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zendo ];
|
||||
};
|
||||
}
|
|
@ -4529,6 +4529,8 @@ with pkgs;
|
|||
|
||||
er-patcher = callPackage ../tools/games/er-patcher { };
|
||||
|
||||
erdtree = callPackage ../tools/system/erdtree { };
|
||||
|
||||
errcheck = callPackage ../development/tools/errcheck { };
|
||||
|
||||
eschalot = callPackage ../tools/security/eschalot { };
|
||||
|
|
Loading…
Reference in a new issue