blob: d6f60945c81480afc792db7cd62f2d36815dc3b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
stdenv,
fetchFromGitHub,
lib,
meson,
ninja,
pkg-config,
libdrm,
libGL,
gst_all_1,
nv-codec-headers-11,
libva,
addDriverRunpath,
}:
stdenv.mkDerivation rec {
pname = "nvidia-vaapi-driver";
version = "0.0.17";
src = fetchFromGitHub {
owner = "elFarto";
repo = "nvidia-vaapi-driver";
rev = "v${version}";
sha256 = "sha256-eJ523lEmB4s+R/QN4J8t6LZ4zw2rEQsaaRBJdjH8Amo=";
};
patches = [
./0001-hardcode-install_dir.patch
];
nativeBuildInputs = [
meson
ninja
pkg-config
addDriverRunpath
];
buildInputs = [
libdrm
libGL
gst_all_1.gstreamer
gst_all_1.gst-plugins-bad
nv-codec-headers-11
libva
];
postFixup = ''
addDriverRunpath "$out/lib/dri/nvidia_drv_video.so"
'';
meta = {
homepage = "https://github.com/elFarto/nvidia-vaapi-driver";
description = "VA-API implemention using NVIDIA's NVDEC";
changelog = "https://github.com/elFarto/nvidia-vaapi-driver/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}
|