36a8a15416
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
23 lines
545 B
Nix
23 lines
545 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "nvjpeg2000";
|
|
pname = "libnvjpeg_2k";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
"static"
|
|
];
|
|
|
|
meta = {
|
|
description = "Accelerates the decoding and encoding of JPEG2000 images on NVIDIA GPUs";
|
|
longDescription = ''
|
|
The nvJPEG2000 library accelerates the decoding and encoding of JPEG2000 images on NVIDIA GPUs.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/nvjpeg2000";
|
|
changelog = "https://docs.nvidia.com/cuda/nvjpeg2000/releasenotes.html";
|
|
};
|
|
}
|