Files
nixpkgs/pkgs/development/cuda-modules/packages/libnpp.nix
T
Connor Baker 29ce053617 cudaPackages: build redists from manifests
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:45 -07:00

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";
};
}