nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "nvjpeg2000";
4 pname = "libnvjpeg_2k";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 "static"
12 ];
13
14 meta = {
15 description = "Accelerates the decoding and encoding of JPEG2000 images on NVIDIA GPUs";
16 longDescription = ''
17 The nvJPEG2000 library accelerates the decoding and encoding of JPEG2000 images on NVIDIA GPUs.
18 '';
19 homepage = "https://docs.nvidia.com/cuda/nvjpeg2000";
20 changelog = "https://docs.nvidia.com/cuda/nvjpeg2000/releasenotes.html";
21 };
22}