blob: e3623eb3b47d7658c70de78804bb9cc94f0a17a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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";
};
}
|