From 3bb9d9c76f8d21e8a3e67cc858f2cfbdf51dca71 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Jun 2023 13:01:57 -0400 Subject: [PATCH] codevis: 0.8.3 -> 0.8.4 Diff: https://github.com/sloganking/codevis/compare/v0.8.3...v0.8.4 Changelog: https://github.com/sloganking/codevis/releases/tag/v0.8.4 --- pkgs/tools/misc/codevis/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/codevis/default.nix b/pkgs/tools/misc/codevis/default.nix index f1a1f74b746e..464702432aa6 100644 --- a/pkgs/tools/misc/codevis/default.nix +++ b/pkgs/tools/misc/codevis/default.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "codevis"; - version = "0.8.3"; + version = "0.8.4"; src = fetchFromGitHub { owner = "sloganking"; repo = "codevis"; rev = "v${version}"; - hash = "sha256-J2cF0ELH9E05ZXRIZQU5qhU1taIorORtqIzq61hTHxQ="; + hash = "sha256-LZ6NsoyEPUvgcVdbG7U2Vzuz/TLLraScvW97PocUNpU="; }; - cargoHash = "sha256-9QRd/UWlaRTtTOjtBa2TzrxCNf/sBbKT3GUnr1Spw+g="; + cargoHash = "sha256-sQKZJVnRs4IcBKmmaQDoJYBQtnuZW4aEICr6Xa8Flnk="; nativeBuildInputs = [ pkg-config @@ -26,11 +26,14 @@ rustPlatform.buildRustPackage rec { oniguruma ]; - RUSTONIG_SYSTEM_LIBONIG = true; + env = { + RUSTONIG_SYSTEM_LIBONIG = true; + }; meta = with lib; { description = "A tool to take all source code in a folder and render them to one image"; homepage = "https://github.com/sloganking/codevis"; + changelog = "https://github.com/sloganking/codevis/releases/tag/${src.rev}"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; };