Skip to content

Commit

Permalink
dovi_tool: init at 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Plamper committed Feb 18, 2025
1 parent 0d01141 commit cfb6e6e
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/by-name/do/dovi_tool/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
fontconfig,
}:

rustPlatform.buildRustPackage rec {
pname = "dovi_tool";
version = "2.2.0";

src = fetchFromGitHub {
owner = "quietvoid";
repo = pname;
rev = version;
hash = "sha256-z783L6gBr9o44moKYZGwymWEMp5ZW7yOhZcpvbznXK4=";
};

checkFlags = [
# fails because nix-store is read only
"--skip=rpu::plot::plot_p7"
];

nativeBuildInputs = [
pkg-config
];

buildInputs = [
fontconfig
];

cargoHash = "sha256-B/X289sZr4IIM7hl2NCU8o1jct7MgFfc3zg5FdPEpME=";

meta = with lib; {
description = "dovi_tool is a 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";
mainProgram = "dovi_tool";
license = licenses.mit;
maintainers = [ maintainers.plamper ];
};
}

0 comments on commit cfb6e6e

Please sign in to comment.