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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.0 KiB
Nix
Raw Normal View History

2022-01-04 15:38:30 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, udev, libcec_platform, libraspberrypi ? null }:
2014-10-28 21:41:45 +00:00
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "libcec";
2021-07-17 17:56:23 +00:00
version = "6.0.2";
2014-10-28 21:41:45 +00:00
2022-01-04 15:38:30 +00:00
src = fetchFromGitHub {
owner = "Pulse-Eight";
repo = "libcec";
rev = "libcec-${version}";
sha256 = "sha256-OWqCn7Z0KG8sLlfMWd0btJIFJs79ET3Y1AV/y/Kj2TU=";
2014-10-28 21:41:45 +00:00
};
nativeBuildInputs = [ pkg-config cmake ];
2020-04-02 02:23:48 +00:00
buildInputs = [ udev libcec_platform ] ++
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 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 = lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.titanous ];
2014-10-28 21:41:45 +00:00
};
}