Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cudaPackages,
}:
stdenv.mkDerivation {
pname = "nvidia-optical-flow-sdk";
version = "2.0";
src = fetchFromGitHub {
owner = "NVIDIA";
repo = "NVIDIAOpticalFlowSDK";
rev = "edb50da3cf849840d680249aa6dbef248ebce2ca";
sha256 = "0hv0m0k9wl2wjhhl886j7ymngnf2xz7851nfh57s1gy5bv9lgdgz";
};
# # We only need the header files. The library files are
# # in the nvidia_x11 driver.
installPhase = ''
mkdir -p $out/include
cp -R * $out/include
'';
# Makes setupCudaHook propagate nvidia-optical-flow-sdk together with cuda
# packages. Currently used by opencv4.cxxdev, hopefully can be removed in the
# future
nativeBuildInputs = [
cudaPackages.markForCudatoolkitRootHook
];
meta = with lib; {
description = "Nvidia optical flow headers for computing the relative motion of pixels between images";
homepage = "https://developer.nvidia.com/opticalflow-sdk";
license = licenses.bsd3; # applies to the header files only
platforms = platforms.all;
};
}