python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / nvidia-video-sdk / default.nix
blobab674833ebfcb2db5c78e118af93ccbfff9d01fc
1 { lib, stdenv, fetchurl, unzip }:
3 stdenv.mkDerivation rec {
4   pname = "nvidia-video-sdk";
5   version = "6.0.1";
7   src = fetchurl {
8     url = "https://developer.nvidia.com/video-sdk-601";
9     name = "nvidia_video_sdk_${version}.zip";
10     sha256 = "08h1vnqsv22js9v3pyim5yb80z87baxb7s2g5gsvvjax07j7w8h5";
11   };
13   nativeBuildInputs = [ unzip ];
15   # We only need the header files. The library files are
16   # in the nvidia_x11 driver.
17   installPhase = ''
18     mkdir -p $out/include
19     cp -R Samples/common/inc/* $out/include
20   '';
22   meta = with lib; {
23     description = "The NVIDIA Video Codec SDK";
24     homepage = "https://developer.nvidia.com/nvidia-video-codec-sdk";
25     license = licenses.unfree;
26   };