dezoomify-rs: 2.13.0 -> 2.15.0

This commit is contained in:
fsagbuya 2025-07-09 18:16:01 +08:00
parent b3cf32038f
commit 1f0c9c0e8a

View File

@ -2,21 +2,34 @@
lib, lib,
rustPlatform, rustPlatform,
fetchFromGitHub, fetchFromGitHub,
nix-update-script,
pkg-config,
openssl,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "dezoomify-rs"; pname = "dezoomify-rs";
version = "2.13.0"; version = "2.15.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lovasoa"; owner = "lovasoa";
repo = "dezoomify-rs"; repo = "dezoomify-rs";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-uo0QTaAAbNYMidlWBauW+3hdd0snEWH+I5KQL6Vxgug="; hash = "sha256-gx/h9i+VPU0AtpQEkN/zCLmeyaW5wSUCfdY52hPwm3Q=";
}; };
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
passthru.updateScript = nix-update-script { };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-v5hlG/VnRyU4lR84IXal5GmrAyfxJTjmwzRKRcfaSIY="; cargoHash = "sha256-Jh1a5DW25a4wzuZbOAoTn/crp/ioLsmq3jDiqIctCCM=";
checkFlags = [ checkFlags = [
# Tests failing due to networking errors in Nix build environment # Tests failing due to networking errors in Nix build environment