git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
16 lines
309 B
Nix
16 lines
309 B
Nix
{
|
|
lib,
|
|
mpv-unwrapped,
|
|
ocl-icd,
|
|
}:
|
|
|
|
mpv-unwrapped.wrapper {
|
|
mpv = mpv-unwrapped.override { vapoursynthSupport = true; };
|
|
extraMakeWrapperArgs = [
|
|
# Add paths to required libraries
|
|
"--prefix"
|
|
"LD_LIBRARY_PATH"
|
|
":"
|
|
"/run/opengl-driver/lib:${lib.makeLibraryPath [ ocl-icd ]}"
|
|
];
|
|
}
|