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

33 lines
999 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, udev, libcec_platform }:
2014-10-28 21:41:45 +00:00
let version = "4.0.4"; in
2014-10-28 21:41:45 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00: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";
sha256 = "02j09y06csaic4m0fyb4dr9l3hl15nxbbniwq0i1qlccpxjak0j3";
2014-10-28 21:41:45 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake udev libcec_platform ];
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
};
}