nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 643 B view raw
1{ buildRedist }: 2buildRedist { 3 redistName = "cuda"; 4 pname = "libnvjpeg"; 5 6 outputs = [ 7 "out" 8 "dev" 9 "include" 10 "lib" 11 "static" 12 "stubs" 13 ]; 14 15 meta = { 16 description = "Provides high-performance, GPU accelerated JPEG decoding functionality for image formats commonly used in deep learning and hyperscale multimedia applications"; 17 longDescription = '' 18 The nvJPEG library provides high-performance, GPU accelerated JPEG decoding functionality for image formats 19 commonly used in deep learning and hyperscale multimedia applications. 20 ''; 21 homepage = "https://docs.nvidia.com/cuda/nvjpeg"; 22 }; 23}