0d87dea8f2
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
25 lines
660 B
Nix
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";
|
|
};
|
|
}
|