mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
nvidia-video-sdk: Remove
As suggested by @Gerg-L, this removes the nvidia-video-sdk, which has unavailable source for multiple years by now (as mentioned in https://github.com/NixOS/nixpkgs/pull/249582#issuecomment-1681992643) Suggested-by: Gerg-L <GregLeyda@proton.me> Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
961896757a
commit
af569e487f
@ -1,28 +0,0 @@
|
||||
{ lib, stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nvidia-video-sdk";
|
||||
version = "6.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://developer.nvidia.com/video-sdk-601";
|
||||
name = "nvidia_video_sdk_${version}.zip";
|
||||
sha256 = "08h1vnqsv22js9v3pyim5yb80z87baxb7s2g5gsvvjax07j7w8h5";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
# We only need the header files. The library files are
|
||||
# in the nvidia_x11 driver.
|
||||
installPhase = ''
|
||||
mkdir -p $out/include
|
||||
cp -R Samples/common/inc/* $out/include
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "The NVIDIA Video Codec SDK";
|
||||
homepage = "https://developer.nvidia.com/nvidia-video-codec-sdk";
|
||||
license = licenses.unfree;
|
||||
};
|
||||
}
|
||||
|
@ -24124,8 +24124,6 @@ with pkgs;
|
||||
|
||||
nvidia-vaapi-driver = lib.hiPrio (callPackage ../development/libraries/nvidia-vaapi-driver { });
|
||||
|
||||
nvidia-video-sdk = callPackage ../development/libraries/nvidia-video-sdk { };
|
||||
|
||||
nvidia-optical-flow-sdk = callPackage ../development/libraries/nvidia-optical-flow-sdk { };
|
||||
|
||||
nvidia-system-monitor-qt = libsForQt5.callPackage ../tools/system/nvidia-system-monitor-qt { };
|
||||
|
Loading…
Reference in New Issue
Block a user