nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "libnpp";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 "static"
12 "stubs"
13 ];
14
15 meta = {
16 description = "Library of primitives for image and signal processing";
17 longDescription = ''
18 NPP is a library of over 5,000 primitives for image and signal processing that lets you easily perform tasks
19 such as color conversion, image compression, filtering, thresholding, and image manipulation.
20 '';
21 homepage = "https://developer.nvidia.com/npp";
22 };
23}