Files
Connor Baker 29ce053617 cudaPackages: build redists from manifests
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:45 -07:00

24 lines
643 B
Nix

{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "libnvjpeg";
outputs = [
"out"
"dev"
"include"
"lib"
"static"
"stubs"
];
meta = {
description = "Provides high-performance, GPU accelerated JPEG decoding functionality for image formats commonly used in deep learning and hyperscale multimedia applications";
longDescription = ''
The nvJPEG library provides high-performance, GPU accelerated JPEG decoding functionality for image formats
commonly used in deep learning and hyperscale multimedia applications.
'';
homepage = "https://docs.nvidia.com/cuda/nvjpeg";
};
}