Files
Connor Baker 0d87dea8f2 cudaPackages.npp_plus: init at 0.10.0
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:48 -07:00

25 lines
660 B
Nix

{ buildRedist }:
buildRedist {
redistName = "nppplus";
pname = "libnpp_plus";
outputs = [
"out"
"dev"
"include"
"lib"
"static"
"stubs"
];
meta = {
description = "C++ support for interfacing with the NVIDIA Performance Primitives (NPP) library";
longDescription = ''
NPP is a library of over 5,000 primitives for image and signal processing that lets you easily perform tasks
such as color conversion, image compression, filtering, thresholding, and image manipulation.
'';
homepage = "https://developer.nvidia.com/npp";
changelog = "https://docs.nvidia.com/cuda/nppplus/releasenotes";
};
}