From 48be87c5543799f397ad952355eee9d9094bad02 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 20 Mar 2023 15:42:23 -0400 Subject: [PATCH] erdtree: 1.3.0 -> 1.6.0, add figsoda as a maintainer Diff: https://github.com/solidiquis/erdtree/compare/v1.3.0...v1.6.0 Changelog: https://github.com/solidiquis/erdtree/releases/tag/v1.6.0 --- pkgs/tools/system/erdtree/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/erdtree/default.nix b/pkgs/tools/system/erdtree/default.nix index 1001fb7fdd69..bf873353ccb4 100644 --- a/pkgs/tools/system/erdtree/default.nix +++ b/pkgs/tools/system/erdtree/default.nix @@ -5,22 +5,23 @@ rustPlatform.buildRustPackage rec { pname = "erdtree"; - version = "1.3.0"; + version = "1.6.0"; src = fetchFromGitHub { owner = "solidiquis"; repo = pname; rev = "v${version}"; - hash = "sha256-xPMOjhp4voT2Ad30WtAyA0MT917xt3Sd++KhLHmciA0="; + hash = "sha256-kSJIZfL25qH+DKFG8/udv6lZt+9pBqIQvbsmT2oa3Bw="; }; - cargoHash = "sha256-euthKq/5X5bCxV8qAAHyMm4nPPSWCvGRCfx0a1kwr/c="; + cargoHash = "sha256-hqS48CYlScvJiT276cAZHiilxz/Gu95WThfSj8aj0BQ="; meta = with lib; { description = "File-tree visualizer and disk usage analyzer"; homepage = "https://github.com/solidiquis/erdtree"; + changelog = "https://github.com/solidiquis/erdtree/releases/tag/${src.rev}"; license = licenses.mit; - maintainers = with maintainers; [ zendo ]; + maintainers = with maintainers; [ figsoda zendo ]; mainProgram = "et"; }; }