python-vlc: use libvlc

This commit is contained in:
Thomas Tuegel 2020-09-25 05:37:12 -05:00 committed by Thomas Tuegel
parent c3d08d652d
commit d752cc4d71
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, setuptools , setuptools
, vlc , libvlc
, substituteAll , substituteAll
}: }:
@ -22,7 +22,7 @@ buildPythonPackage rec {
patches = [ patches = [
(substituteAll { (substituteAll {
src = ./vlc-paths.patch; src = ./vlc-paths.patch;
libvlcPath="${vlc}/lib/libvlc.so.5"; libvlcPath="${libvlc}/lib/libvlc.so.5";
}) })
]; ];