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