d211d7c440
Updated pvr-hts plugin to latest version to work with kodi 17. Had to update libcec as well, to pick the name change.
31 lines
965 B
Nix
31 lines
965 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig, udev, libcec_platform }:
|
|
|
|
let version = "3.1.0"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libcec-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
|
|
sha256 = "08gr4rhx7qh8ajkry9j0sqw11i74y802dla1wg4l4gxhl4hrs409";
|
|
};
|
|
|
|
buildInputs = [ cmake pkgconfig udev libcec_platform ];
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=1" ];
|
|
|
|
# Fix dlopen path
|
|
patchPhase = ''
|
|
substituteInPlace include/cecloader.h --replace "libcec.so" "$out/lib/libcec.so"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Allows you (with the right hardware) to control your device with your TV remote control using existing HDMI cabling";
|
|
homepage = "http://libcec.pulse-eight.com";
|
|
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.titanous ];
|
|
};
|
|
}
|