nixpkgs/pkgs/development/libraries/libcec/default.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

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
2020-05-02 19:22:39 +01:00
let version = "4.0.5"; 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 {
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
2020-05-02 19:22:39 +01:00
sha256 = "0hvp33mq0kg544hw20aq3vy5lxf5zid6gxm3qdga7wxw1r1lkmz4";
2014-10-28 21:41:45 +00:00
};
2020-04-02 03:23:48 +01:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ udev libcec_platform ] ++
2019-10-26 18:58:00 +01:00
stdenv.lib.optional (libraspberrypi != null) libraspberrypi;
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"
'';
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";
homepage = "http://libcec.pulse-eight.com";
2014-10-28 21:41:45 +00:00
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.titanous ];
2014-10-28 21:41:45 +00:00
};
}