2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, pkg-config, udev, libcec_platform, libraspberrypi ? null }:
|
2014-10-28 21:41:45 +00:00
|
|
|
|
2020-11-26 09:12:52 +00:00
|
|
|
let version = "6.0.2"; 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";
|
2020-11-26 09:12:52 +00:00
|
|
|
sha256 = "0xrkrcgfgr5r8r0854bw3i9jbq4jmf8nzc5vrrx2sxzvlkbrc1h9";
|
2014-10-28 21:41:45 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2020-04-02 03:23:48 +01:00
|
|
|
buildInputs = [ udev libcec_platform ] ++
|
2021-01-21 17:00:13 +00:00
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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";
|
2020-04-01 02:11:51 +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";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = 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
|
|
|
};
|
|
|
|
}
|