29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
24 lines
643 B
Nix
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";
|
|
};
|
|
}
|