asciinema-agg: 1.4.1 -> 1.4.2

Diff: https://github.com/asciinema/agg/compare/v1.4.1...v1.4.2

Changelog: https://github.com/asciinema/agg/releases/tag/v1.4.2
This commit is contained in:
figsoda 2023-06-11 09:40:36 -04:00
parent 9401a0c780
commit c23a6612ac
2 changed files with 5 additions and 4 deletions

View file

@ -10,7 +10,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "agg"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"anyhow",
"avt",

View file

@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "agg";
version = "1.4.1";
version = "1.4.2";
src = fetchFromGitHub {
owner = "asciinema";
repo = pname;
repo = "agg";
rev = "v${version}";
sha256 = "sha256-ozkC3jaM7Q0BKS7KrgN+sI6YU0996ioTgbrJ4uJ6/9E=";
sha256 = "sha256-pyXGWSL2HnRfcLo1V/pFKNI08B51ZvmJsYhl893CUl0=";
};
cargoLock = {
@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A command-line tool for generating animated GIF files from asciicast v2 files produced by asciinema terminal recorder";
homepage = "https://github.com/asciinema/agg";
changelog = "https://github.com/asciinema/agg/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};