mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #4821 from titanous/fix-libcec-dlopen
libcec: patch dlopen path
This commit is contained in:
commit
4380b5e357
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,11 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook pkgconfig udev ];
|
buildInputs = [ autoreconfHook pkgconfig udev ];
|
||||||
|
|
||||||
|
# Fix dlopen path
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace include/cecloader.h --replace "libcec.so" "$out/lib/libcec.so"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "USB CEC adapter communication library";
|
description = "USB CEC adapter communication library";
|
||||||
homepage = "http://libcec.pulse-eight.com";
|
homepage = "http://libcec.pulse-eight.com";
|
||||||
|
|
Loading…
Reference in a new issue