nv-codec-headers-11: init at 11.1.5.0
This commit is contained in:
parent
a25fb7a911
commit
fc18bab566
2 changed files with 28 additions and 0 deletions
27
pkgs/development/libraries/nv-codec-headers/11_x.nix
Normal file
27
pkgs/development/libraries/nv-codec-headers/11_x.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchgit
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nv-codec-headers";
|
||||
version = "11.1.5.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git";
|
||||
rev = "n${version}";
|
||||
sha256 = "5d6LCKQB31UZ0veanSeKJVrPkJ8o2nvQWRfIG8YuekM=";
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "FFmpeg version of headers for NVENC";
|
||||
homepage = "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ MP2E ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -18439,6 +18439,7 @@ with pkgs;
|
|||
|
||||
nv-codec-headers = callPackage ../development/libraries/nv-codec-headers { };
|
||||
nv-codec-headers-10 = callPackage ../development/libraries/nv-codec-headers/10_x.nix { };
|
||||
nv-codec-headers-11 = callPackage ../development/libraries/nv-codec-headers/11_x.nix { };
|
||||
|
||||
mkNvidiaContainerPkg = { name, containerRuntimePath, configTemplate, additionalPaths ? [] }:
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue