nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "nvtiff";
4 pname = "libnvtiff";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 "static"
12 ];
13
14 meta = {
15 description = "Accelerates TIFF encode/decode on NVIDIA GPUs";
16 longDescription = ''
17 nvTIFF is a GPU accelerated TIFF(Tagged Image File Format) encode/decode library built on the CUDA platform.
18 '';
19 homepage = "https://docs.nvidia.com/cuda/nvtiff";
20 changelog = "https://docs.nvidia.com/cuda/nvtiff/releasenotes.html";
21 };
22}