Files
Connor Baker 3b17f672d2 cudaPackages.libnvtiff: init at 0.5.1
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:48 -07:00

23 lines
517 B
Nix

{ buildRedist }:
buildRedist {
redistName = "nvtiff";
pname = "libnvtiff";
outputs = [
"out"
"dev"
"include"
"lib"
"static"
];
meta = {
description = "Accelerates TIFF encode/decode on NVIDIA GPUs";
longDescription = ''
nvTIFF is a GPU accelerated TIFF(Tagged Image File Format) encode/decode library built on the CUDA platform.
'';
homepage = "https://docs.nvidia.com/cuda/nvtiff";
changelog = "https://docs.nvidia.com/cuda/nvtiff/releasenotes.html";
};
}