29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
24 lines
556 B
Nix
24 lines
556 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "libnpp";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
"static"
|
|
"stubs"
|
|
];
|
|
|
|
meta = {
|
|
description = "Library of primitives for image and signal processing";
|
|
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";
|
|
};
|
|
}
|