Merge pull request #229799 from jshcmpbll/jc/issue-226671

davinci-resolve: overriding appimage-run to use buildFHSEnvChroot
This commit is contained in:
Weijia Wang 2023-05-05 01:13:04 +03:00 committed by GitHub
commit e65c6dda91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
, libGLU
, xorg
, buildFHSEnv
, buildFHSEnvChroot
, bash
, writeText
, ocl-icd
@ -26,7 +27,11 @@ let
pname = "davinci-resolve";
version = "17.4.3";
nativeBuildInputs = [ unzip appimage-run addOpenGLRunpath ];
nativeBuildInputs = [
unzip
(appimage-run.override { buildFHSEnv = buildFHSEnvChroot; } )
addOpenGLRunpath
];
# Pretty sure, there are missing dependencies ...
buildInputs = [ libGLU xorg.libXxf86vm ];