2015-08-04 01:50:54 +02:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, udev, libcec_platform }:
|
2014-10-28 22:41:45 +01:00
|
|
|
|
2017-02-25 00:20:12 +01:00
|
|
|
let version = "4.0.2"; in
|
2014-10-28 22:41:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libcec-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-04 01:50:54 +02:00
|
|
|
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
|
2017-02-25 00:20:12 +01:00
|
|
|
sha256 = "09xsw9hfymzl9fi9r2r8n5cxk80fc00x9drsy1r59pgbycqxvf5q";
|
2014-10-28 22:41:45 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake udev libcec_platform ];
|
2015-08-04 01:50:54 +02:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=1" ];
|
2014-10-28 22:41:45 +01:00
|
|
|
|
2014-11-04 04:00:44 +01:00
|
|
|
# Fix dlopen path
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace include/cecloader.h --replace "libcec.so" "$out/lib/libcec.so"
|
|
|
|
'';
|
|
|
|
|
2014-11-02 21:58:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-24 10:57:07 +01:00
|
|
|
description = "Allows you (with the right hardware) to control your device with your TV remote control using existing HDMI cabling";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://libcec.pulse-eight.com;
|
2014-10-28 22:41:45 +01:00
|
|
|
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2014-11-02 21:58:11 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.titanous ];
|
2014-10-28 22:41:45 +01:00
|
|
|
};
|
|
|
|
}
|