nv-codec-headers-10: init at 10.0.26.2
(cherry picked from commit 13f114593bb7796010fccaffbdb0686852a1de27)
This commit is contained in:
parent
fa5915bebb
commit
a5cbb1a436
|
@ -0,0 +1,22 @@
|
|||
{ lib, stdenv, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nv-codec-headers";
|
||||
version = "10.0.26.2";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git";
|
||||
rev = "n${version}";
|
||||
sha256 = "0n5jlwjfv5irx1if1g0n52m279bw7ab6bd3jz2v4vwg9cdzbxx85";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
description = "FFmpeg version of headers for NVENC";
|
||||
homepage = "https://ffmpeg.org/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.MP2E ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -17155,6 +17155,7 @@ in
|
|||
nuspellWithDicts = dicts: callPackage ../development/libraries/nuspell/wrapper.nix { inherit dicts; };
|
||||
|
||||
nv-codec-headers = callPackage ../development/libraries/nv-codec-headers { };
|
||||
nv-codec-headers-10 = callPackage ../development/libraries/nv-codec-headers/10_x.nix { };
|
||||
|
||||
mkNvidiaContainerPkg = { name, containerRuntimePath, configTemplate, additionalPaths ? [] }:
|
||||
let
|
||||
|
|
Loading…
Reference in New Issue