about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFelix Bühler <Stunkymonkey@users.noreply.github.com>2023-06-04 22:06:17 +0200
committerGitHub <noreply@github.com>2023-06-04 22:06:17 +0200
commit07f161fed1e7cb96bb28cf25755867e1e0b9c8c5 (patch)
tree4d382c5572649e09ddf4f8c00246bc36e3cf0f44 /pkgs
parent9c3bc86418e20f19a598c7eb70cb7e9a869607c2 (diff)
parent3bb9d9c76f8d21e8a3e67cc858f2cfbdf51dca71 (diff)
Merge pull request #235945 from figsoda/codevis
codevis: 0.8.3 -> 0.8.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/codevis/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/misc/codevis/default.nix b/pkgs/tools/misc/codevis/default.nix
index f1a1f74b746e4..464702432aa6f 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 ];
   };