55 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-03-10 23:53:54 +01:00
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
fontconfig,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "dovi-tool";
version = "2.2.0";
src = fetchFromGitHub {
owner = "quietvoid";
repo = "dovi_tool";
tag = finalAttrs.version;
hash = "sha256-z783L6gBr9o44moKYZGwymWEMp5ZW7yOhZcpvbznXK4=";
};
cargoHash = "sha256-pwB6QBLeHALbYZHzTBm/ODLPHhxM3B5n+B/0iXYNuVc=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
fontconfig
];
checkFlags = [
# fails because nix-store is read only
"--skip=rpu::plot::plot_p7"
];
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgram = "${placeholder "out"}/bin/dovi_tool";
versionCheckProgramArg = "--version";
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "CLI tool combining multiple utilities for working with Dolby Vision";
homepage = "https://github.com/quietvoid/dovi_tool";
changelog = "https://github.com/quietvoid/dovi_tool/releases/tag/${finalAttrs.version}";
2025-03-10 23:53:54 +01:00
mainProgram = "dovi_tool";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ plamper ];
};
})