viu: 1.4.0 -> 1.5.0

This commit is contained in:
Sigmanificient
2024-08-14 06:31:23 +02:00
parent bdc89291f8
commit 487396af3c
+4 -4
View File
@@ -7,19 +7,19 @@
rustPlatform.buildRustPackage rec {
pname = "viu";
version = "1.4.0";
version = "1.5.0";
src = fetchFromGitHub {
owner = "atanunq";
repo = "viu";
rev = "v${version}";
sha256 = "sha256-lAuIl25368Gv717a8p2So1o1VMDJJAOlDdqfItYizo4=";
sha256 = "sha256-GJBJNtcCDO777NdxLBVj5Uc4PSJq3CE785eGKCPWt0I=";
};
# tests need an interactive terminal
doCheck = false;
cargoHash = "sha256-ildtjaYGbrQacJOdGDVwFv+kod+vZHqukWN6ARtJqI4=";
cargoHash = "sha256-284ptMBVF4q57wTiCuTuYUiYMYItKf4Tyf6AtY0fqDk=";
buildFeatures = lib.optional withSixel "sixel";
buildInputs = lib.optional withSixel libsixel;
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
description = "Command-line application to view images from the terminal written in Rust";
homepage = "https://github.com/atanunq/viu";
license = licenses.mit;
maintainers = with maintainers; [ chuangzhu ];
maintainers = with maintainers; [ chuangzhu sigmanificient ];
mainProgram = "viu";
};
}